Closed getreu closed 10 months ago
BTW: I mentioned your crate in a blog post: Jens Getreu's blog - Tp-Note learns RestructuredText
Oh thank you!
About your test case: I think the problem was the lack of a trailing newline: rust-rst’s README also ends with a link target and parses fine.
I think #31 should fix it for my binary. You can fix it for your crate in a similar way.
Maybe I should throw an error in the parser if there’s no trailing newline? Or really fix this by replacing NEWLINE
in the grammar with newline = _{ NEWLINE | EOI }
About your test case: I think the problem was the lack of a trailing newline
Yes, you are right. I observed the following:
It parses when:
..
ended by one or more \n
,\n
.It does not parse when:
\n
,..
without trailing \n
.\n
.My current workaround is:
// To add a newline at the end, we need to copy here. No other choice.
let mut rest_input = rest_input.trim().to_string();
rest_input.push('\n');
let document = parse(rest_input.as_str()).map_err(|e| anyhow!(e))?;
The above to_string()
followed by push()
implies memory allocation and copying.
The following would avoid this and fix use case no. 4.:
Or really fix this by replacing NEWLINE in the grammar with newline = _{ NEWLINE | EOI }
To fix use case no. 3 and no. 5., I could just do:
let document = parse(rest_input.trim().map_err(|e| anyhow!(e))?;
Or, together with #32, it would look like:
let document = parse(rest_input.trim())?;
Or, if you'd allow use case no. 3 and no. 5 at your side, then it would even look like this:
let document = parse(rest_input)?;
If I could avoid trim()
at my side, the user would get error messages with correct line numbers.
Or really fix this by replacing NEWLINE in the grammar with newline = _{ NEWLINE | EOI }
Hmm, I tried doing sed -i 's/NEWLINE/nl/g' rst.pest
and then adding this:
nl = _{ NEWLINE | &EOI }
But for some reason the tests then loop infinitely. Any idea why?
Thank you. Unfortunately, I am not familiar with with this parser. I am afraid I can not help. Maybe try to execute step by step with a debugger to identify the loop. This sometimes gives a hint.
I included your renderer to my tp-note project. Thank you for sharing this. I noticed that the file does wrongly not render, when the last line starts with
..
. for example:or
When I add some regular text behind, it renders again.