Docs

Paragraph

Learn how to style and format paragraphs in your documents.

{{ paragraph
  font size: l
  font style: b
  font align: center
  fg: blue-700
}}

Styled markdown text

{{ /paragraph }}

The paragraph section is a wrapper that applies styling across several markdown elements. It supports font size, style and alignment in addition to the common parameters for spacing, borders and colours.

The paragraph section works identically to the mail paragraph section.

keyword: font size / sz
options: xs | s | m | l | xl | xxl | xxxl

keyword: font style / st
options: s | strong | b | bold | i | italic | regular | r

Styles can be combined with a space, e.g. b i for bold italic.

keyword: font align / al
options: l | left | r | right | c | center | j | justify

{{ para
  sz: xxl
  st: b
  al: center
  fg: blue-800
  m: t4 b2
}}
# Document Title
{{ /para }}

{{ para
  sz: s
  st: i
  fg: gray-600
  b: l2 gray-400
  p: l2
}}
This document is for informational purposes only and should not
be used for investment decisions.
{{ /para }}

{{ para
  b: l3 blue-500
  p: l2
  m: b2
}}
**Finding 1:** The flexicurity model is increasingly a Danish
phenomenon rather than a Nordic one.
{{ /para }}