You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the same issue as #278, except that it still occurs for codeblocks that are not syntax highlighted.
The easiest way to reproduce this is to comment out the line plugins.render.codefence_syntax_highlighter = Some(&adapter); in the syntect example. Or alternatively run the following code:
use comrak::{markdown_to_html,Options};fnmain(){let input = concat!("```Rust\n","fn main<'a>();\n","```");let formatted = markdown_to_html(input,&Options::default());println!("{}", formatted);}
This is the same issue as #278, except that it still occurs for codeblocks that are not syntax highlighted.
The easiest way to reproduce this is to comment out the line
plugins.render.codefence_syntax_highlighter = Some(&adapter);
in thesyntect
example. Or alternatively run the following code:this prints
rather than
The text was updated successfully, but these errors were encountered: