diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 80f0f83..55dd485 100644 --- a/src/main.rs +++ b/src/main.rs @@ -407,8 +407,9 @@ fn write_readme_content(file: &mut File, in_path: &Path, raw_path: &Path) <h1><a href="#{a}">{b}</a></h1> <pre>"##, a = heading_sanitized, b = heading).as_bytes())?; - } else if line.starts_with(">") { - let line = line.get(1..).unwrap(); + } else if line.starts_with("> ") { + let line = line.replace("<", "<"); + let line = line.get(2..).unwrap(); file.write_all(format!("</pre><pre class=\"code\">{}</pre><pre>\n", line).as_bytes())?; } else if line.starts_with(":::tree") { |