mdgriffith / elm-markup

Elm-friendly markup

Home Page:https://package.elm-lang.org/packages/mdgriffith/elm-markup/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Text following list

colinf opened this issue · comments

I seem to get a parser error if I have a standard text block following a list such as

| list
    - This is definitely the first thing.
    - Another thing.

And one more thing not in the list.

I managed to work this out. As per the documentation for Mark.Custom.section

Parsing ends when there are three consecutive newlines.

My example above only has two newlines after the list!