Using markdown

Creating rich text within form flows.

You can use markdown syntax to alter the appearance of the text in your forms.

Example of markdown being used.

Available Markdown

Headers

Use # at the start of a line of text to use a heading paragraph style.

# This is a big header (H1)
## This is a medium header (H2)

... all the way to ...

###### This is the smallest header (H6)

To set the styling of the different elements, update Typography within the style editor. The hash symbols (#) assign different header levels.

Emphasis

*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_These **can** be combined_

Lists

* Item 1
* Item 2
  * Item 2a
  * Item 2b
1. Item 1
1. Item 2
  1. Item 2a
  1. Item 2b
[Formsort](http://formsort.com)

Make sure to not leave any space between [Formsort] and (http://formsort.com).

Blockquotes

As Dieter Rams said:

> Less, but better

Tips and tricks

  • If you want some words to always stay together, and never get broken with line breaks, instead of using spaces, write   , for example Hello world This is a non-breaking space, which will show up as a space but behave like a continuous section of text would.

  • To force a line break, on the other hand, you can write <br/>, which will always insert a line break at that position. Alternatively, you can end a line with a double-space!

Last updated

Was this helpful?