Skip to content

Commit

Permalink
fix: ignore keyword on html export
Browse files Browse the repository at this point in the history
  • Loading branch information
PoiScript committed May 7, 2024
1 parent caa7c0a commit dc8d70c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/export/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,9 @@ impl Traverser for HtmlExport {
let _ = write!(&mut self.output, "{}", &latex.syntax);
}

// ignores keyword
Event::Enter(Container::Keyword(_)) => {}

Event::Entity(entity) => self.output += entity.html(),

_ => {}
Expand Down

0 comments on commit dc8d70c

Please sign in to comment.