Skip to content

Commit c866e81

Browse files
authored
feature: HTML writer (#51)
* feature: HTML writer * changes to tests
1 parent bbf7660 commit c866e81

File tree

19 files changed

+646
-0
lines changed

19 files changed

+646
-0
lines changed

crates/quarto-markdown-pandoc/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ fn main() {
160160
"json" => writers::json::write(&pandoc, &context, &mut buf),
161161
"native" => writers::native::write(&pandoc, &mut buf),
162162
"markdown" | "qmd" => writers::qmd::write(&pandoc, &mut buf),
163+
"html" => writers::html::write(&pandoc, &mut buf),
163164
_ => {
164165
eprintln!("Unknown output format: {}", args.to);
165166
return;

0 commit comments

Comments
 (0)