We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--- title: | Some title --- Foo
Error:
user error (20eescg.md:2:0: error | 2 | Some title | ^ Unexpected ' ')
That used to work with the commit from a few hours ago, so I'm guessing c77d4f0 broke it
The text was updated successfully, but these errors were encountered:
Took inspiration from https://stackoverflow.com/a/46227637 , and the following seems to work (no need to try):
try
startOfLine :: Parser () startOfLine = do pos <- M.getSourcePos guard (M.sourceColumn pos == M.pos1) separatorP :: Parser () separatorP = void $ startOfLine *> M.string "---" <* M.eol
Sorry, something went wrong.
Looks like we need some tests around for partitioner.
We may be able to borrow some ideas from mmark:
https://github.com/mmark-md/mmark/blob/ab4616e27b39c4a100223788eaa1b5911f1276d7/Text/MMark/Parser.hs#L157-L172
And specs:
https://github.com/mmark-md/mmark/blob/18c7d320f496f54833dfd24584f1760c7857b9b5/tests/Text/MMarkSpec.hs
No branches or pull requests
Error:
That used to work with the commit from a few hours ago, so I'm guessing c77d4f0 broke it
The text was updated successfully, but these errors were encountered: