invicticide / fractive

Fractive is a free, open-source, Markdown-based hypertext authoring tool for writing interactive fiction.
http://fractive.io
Other
37 stars 5 forks source link

First paragraph of section disappears if directly under the section declaration #58

Closed NQNStudios closed 6 years ago

NQNStudios commented 6 years ago

What happened

The first paragraph of a section I wrote wasn't appearing. I realized it was because I didn't skip a line below the section declaration.

Steps to reproduce

Make a text.md like this:

{{Start}}
What about me, huh?

You wouldn't know it, but I am actually the second paragraph.

Compile and run.

Expected behavior

These two section declarations should both be equivalent:

{{Start}}
First paragraph.

and

{{Start}}

First paragraph.
invicticide commented 6 years ago

This is now fixed so that all the following permutations will work as expected:

{{Start}}

First paragraph

Second paragraph
{{Start}}
First paragraph

Second paragraph
{{Start}}First paragraph

Second paragraph