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
@steveklabnik this seems to be a hoedown -> pulldown regression #40912
//! * lorem ipsum //! dolor sit //! amet //! * lorem ipsum dolor sit amet
* lorem ipsumdolor sitamet * lorem ipsum dolor sit amet
* lorem ipsum dolor sit amet * lorem ipsum dolor sit amet
The text was updated successfully, but these errors were encountered:
Interestingly this does not seem to be a bug in pulldown-cmark, but maybe something post-processing related?
The doc-output of the nightly compiler is
<ul><li>lorem ipsumdolor sitamet</li><li>lorem ipsum dolor sit amet</li></ul>
While pulldown-cmark itself outputs:
<ul> <li>lorem ipsum dolor sit amet</li> <li>lorem ipsum dolor sit amet</li> </ul>
//! * lorem ipsum //! dolor sit //! amet //! * lorem ipsum dolor sit amet extern crate pulldown_cmark; use pulldown_cmark::{html, Parser}; const MARKDOWN: &'static str = r##" * lorem ipsum dolor sit amet * lorem ipsum dolor sit amet "##; fn main() { mut buf = String::new(); let parser = Parser::new(MARKDOWN); html::push_html(&mut buf, parser); println!("{}", buf); }
Sorry, something went wrong.
This was fixed by #41112. You'll need to update to the latest nightly.
Right. That was a quick fix - thanks. :-)
No branches or pull requests
@steveklabnik this seems to be a hoedown -> pulldown regression #40912
IN
OUT
1.18.0-nightly (2017-04-06)
1.15.0 ... 1.17.0-beta.3 (2017-04-05)
The text was updated successfully, but these errors were encountered: