diff options
author | Emile <git@emile.space> | 2022-02-03 21:55:10 +0100 |
---|---|---|
committer | Emile <git@emile.space> | 2022-02-03 21:55:10 +0100 |
commit | 2d473af0fe018ae48ebe54eac0b2e7ff52f6b4ca (patch) | |
tree | 9a4f04507739ec0d19c8b364a48010377e1004bd | |
parent | 9f395a122d6cd66170c363a3ef50871d8d4a25b2 (diff) |
improved the code rendering
-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") { |