Render html <code> tags as code in markdown (#3425)

This commit is contained in:
A-Walrus 2022-09-13 12:14:16 +03:00 committed by GitHub
parent ffb41a94f0
commit ac460ac837
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -178,6 +178,21 @@ impl Markdown {
.map(|key| get_theme(key))
.collect();
// Transform text in `<code>` blocks into `Event::Code`
let mut in_code = false;
let parser = parser.filter_map(|event| match event {
Event::Html(tag) if *tag == *"<code>" => {
in_code = true;
None
}
Event::Html(tag) if *tag == *"</code>" => {
in_code = false;
None
}
Event::Text(text) if in_code => Some(Event::Code(text)),
_ => Some(event),
});
for event in parser {
match event {
Event::Start(Tag::List(list)) => {