Skip to content

Markdown

Flows can contain markdown content if they set type="markdown". For example,

xml
<flows>
  <body type="markdown">
    # Section One in Markdown

    Lorem ipsum...

    # Section Two in Markdown

    Lorem ipsum...
  </body>
</flows>

Press elements can still be included if type="markdown", allowing you mix and match easily:

xml
<flows>
  <body type="markdown">
    # Section One in Markdown

    Lorem ipsum...

    <frame direction="row">
      <img width="50%" src="..." />

      <p>This is an interesting image!</p>
    </frame>

    # Section Two in Markdown

    Lorem ipsum...
  </body>
</flows>