mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Render html <code> tags as code in markdown (#3425)
This commit is contained in:
parent
ffb41a94f0
commit
ac460ac837
1 changed files with 15 additions and 0 deletions
|
@ -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)) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue