fix: ignore keyword on html export
This commit is contained in:
parent
caa7c0aacd
commit
df0d5baec9
1 changed files with 3 additions and 0 deletions
|
|
@ -326,6 +326,9 @@ impl Traverser for HtmlExport {
|
|||
let _ = write!(&mut self.output, "{}", &latex.syntax);
|
||||
}
|
||||
|
||||
// ignores keyword
|
||||
Event::Enter(Container::Keyword(_)) => ctx.skip(),
|
||||
|
||||
Event::Entity(entity) => self.output += entity.html(),
|
||||
|
||||
_ => {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue