diff --git a/app/templates/guides/user-guides/99-babycode.html b/app/templates/guides/user-guides/99-babycode.html index 3bb137a..ca9e9a0 100644 --- a/app/templates/guides/user-guides/99-babycode.html +++ b/app/templates/guides/user-guides/99-babycode.html @@ -95,12 +95,12 @@

Paragraph rules

Line breaks in babycode work like Markdown: to start a new paragraph, use two line breaks:

{{ '[code]paragraph 1\n\nparagraph 2[/code]' | babycode | safe }} - Will produce:
- {{ 'paragraph 1\n\nparagraph 2' | babycode | safe }} + Will produce: + {{ 'paragraph 1\n\nparagraph 2' | babycode(true) | safe }}

To break a line without starting a new paragraph, end a line with two spaces:

{{ '[code]paragraph 1 \nstill paragraph 1[/code]' | babycode | safe }} That will produce:
- {{ 'paragraph 1 \nstill paragraph 1' | babycode | safe }} + {{ 'paragraph 1 \nstill paragraph 1' | babycode(true) | safe }}

Additionally, the following tags will break into a new paragraph: