Skip to content

Commit

Permalink
update original
Browse files Browse the repository at this point in the history
  • Loading branch information
funkill committed Jul 18, 2024
1 parent 3db98d7 commit 0af4af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rustbook-en/packages/mdbook-trpl-listing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl Preprocessor for TrplListing {
}

fn supports_renderer(&self, renderer: &str) -> bool {
renderer == "html" || renderer == "markdown"
renderer == "html" || renderer == "markdown" || renderer == "test"
}
}

Expand Down
2 changes: 1 addition & 1 deletion rustbook-en/packages/mdbook-trpl-note/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ impl Preprocessor for TrplNote {
}

fn supports_renderer(&self, renderer: &str) -> bool {
renderer == "html" || renderer == "markdown"
renderer == "html" || renderer == "markdown" || renderer == "test"
}
}

Expand Down

0 comments on commit 0af4af4

Please sign in to comment.