We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7aa78c commit deab3baCopy full SHA for deab3ba
src/renderer/html_handlebars/hbs_renderer.rs
@@ -49,7 +49,6 @@ impl HtmlHandlebars {
49
content = helpers::playpen::render_playpen(&content, p);
50
}
51
52
- // Render markdown using the pulldown-cmark crate
53
content = utils::render_markdown(&content);
54
print_content.push_str(&content);
55
@@ -58,6 +57,7 @@ impl HtmlHandlebars {
58
57
ch.path
59
.to_str()
60
.ok_or_else(|| io::Error::new(io::ErrorKind::Other, "Could not convert path to str"))?;
+
61
data.insert("path".to_owned(), json!(path));
62
data.insert("content".to_owned(), json!(content));
63
data.insert("chapter_title".to_owned(), json!(ch.name));
0 commit comments