Notes Field Formatting

It seems that the template notes field is not respecting linebreaks correctly. If I enter data like this:

Line 1
Line 2
Line 3

It shows up like this:

Line 1 Line 2 Line 3

And if I enter data like this:

Line 1

Line 2

Line 3


Section 2 Line 1

Section 2 Line 2

Section 2 Line 3

It shows up like this:

Line 1

Line 2

Line 3

Section 2 Line 1

Section 2 Line 2

Section 2 Line 3

Hey, the description text is using Markdown syntax for formatting. Check this page to see how to get line breaks in there: https://gist.github.com/shaunlebron/746476e6e7a4d698b373

Basically just put two blank spaces at the end of a line, or add html tag: <br/>

2 Likes

Ahhh, it uses markdown, I had no idea!

Thanks!

1 Like