{
- use SyntaxHighlighter::*;
-
- match self {
- Inlined(_) | NoHighlight => None,
- Classed(h) => Some(h.finalize()),
- }
- }
-
/// Inlined needs to set the background/foreground colour on
pub fn pre_style(&self) -> Option {
use SyntaxHighlighter::*;
@@ -210,7 +226,6 @@ mod tests {
for line in LinesWithEndings::from(code) {
out.push_str(&highlighter.highlight_line(line));
}
- out.push_str(&highlighter.finalize());
assert!(out.starts_with(""));
diff --git a/components/markdown/src/codeblock/mod.rs b/components/markdown/src/codeblock/mod.rs
index 5c9a4631..01af5f01 100644
--- a/components/markdown/src/codeblock/mod.rs
+++ b/components/markdown/src/codeblock/mod.rs
@@ -168,10 +168,6 @@ impl<'config> CodeBlock<'config> {
}
}
- if let Some(rest) = self.highlighter.finalize() {
- buffer.push_str(&rest);
- }
-
if self.line_numbers {
buffer.push_str("");
}
diff --git a/components/markdown/tests/codeblocks.rs b/components/markdown/tests/codeblocks.rs
index 4b27d296..a565a6a2 100644
--- a/components/markdown/tests/codeblocks.rs
+++ b/components/markdown/tests/codeblocks.rs
@@ -2,9 +2,24 @@ use config::Config;
mod common;
-fn render_codeblock(content: &str, highlight_code: bool) -> String {
+enum HighlightMode {
+ None,
+ Inlined,
+ Classed,
+}
+
+fn render_codeblock(content: &str, highlight_mode: HighlightMode) -> String {
let mut config = Config::default_for_test();
- config.markdown.highlight_code = highlight_code;
+ match highlight_mode {
+ HighlightMode::None => {}
+ HighlightMode::Inlined => {
+ config.markdown.highlight_code = true;
+ }
+ HighlightMode::Classed => {
+ config.markdown.highlight_code = true;
+ config.markdown.highlight_theme = "css".to_owned();
+ }
+ }
common::render_with_config(content, config).unwrap().body
}
@@ -17,7 +32,7 @@ foo
bar
```
"#,
- false,
+ HighlightMode::None,
);
insta::assert_snapshot!(body);
}
@@ -33,7 +48,7 @@ baz
bat
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -49,7 +64,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -65,7 +80,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -81,7 +96,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -97,7 +112,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
let body2 = render_codeblock(
r#"
@@ -108,7 +123,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
assert_eq!(body, body2);
}
@@ -124,7 +139,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -140,7 +155,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -156,7 +171,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -172,7 +187,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -188,7 +203,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -204,7 +219,7 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -220,7 +235,24 @@ bar
baz
```
"#,
- true,
+ HighlightMode::Inlined,
+ );
+ insta::assert_snapshot!(body);
+}
+
+#[test]
+fn can_highlight_with_classes() {
+ let body = render_codeblock(
+ r#"
+```html,hl_lines=3-4
+
+```
+ "#,
+ HighlightMode::Classed,
);
insta::assert_snapshot!(body);
}
@@ -234,14 +266,14 @@ foo
bar
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
#[test]
fn can_add_line_numbers_windows_eol() {
- let body = render_codeblock("```linenos\r\nfoo\r\nbar\r\n```\r\n", true);
+ let body = render_codeblock("```linenos\r\nfoo\r\nbar\r\n```\r\n", HighlightMode::Inlined);
insta::assert_snapshot!(body);
}
@@ -254,7 +286,7 @@ foo
bar
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -268,7 +300,24 @@ foo
bar
```
"#,
- true,
+ HighlightMode::Inlined,
+ );
+ insta::assert_snapshot!(body);
+}
+
+#[test]
+fn can_add_line_numbers_with_classes() {
+ let body = render_codeblock(
+ r#"
+```html,linenos
+
+```
+ "#,
+ HighlightMode::Classed,
);
insta::assert_snapshot!(body);
}
@@ -283,7 +332,7 @@ fn can_render_shortcode_in_codeblock() {
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -300,7 +349,7 @@ text2
text3
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -323,7 +372,7 @@ A quote
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
@@ -337,7 +386,7 @@ foo
bar
```
"#,
- true,
+ HighlightMode::Inlined,
);
insta::assert_snapshot!(body);
}
diff --git a/components/markdown/tests/snapshots/codeblocks__can_add_line_numbers_with_classes.snap b/components/markdown/tests/snapshots/codeblocks__can_add_line_numbers_with_classes.snap
new file mode 100644
index 00000000..4d226893
--- /dev/null
+++ b/components/markdown/tests/snapshots/codeblocks__can_add_line_numbers_with_classes.snap
@@ -0,0 +1,11 @@
+---
+source: components/markdown/tests/codeblocks.rs
+expression: body
+---
+1 | <link
+ |
2 | rel="stylesheet"
+ |
3 | type="text/css"
+ |
4 | href="main.css"
+ |
5 | />
+ |
+
diff --git a/components/markdown/tests/snapshots/codeblocks__can_highlight_with_classes.snap b/components/markdown/tests/snapshots/codeblocks__can_highlight_with_classes.snap
new file mode 100644
index 00000000..e4feb60b
--- /dev/null
+++ b/components/markdown/tests/snapshots/codeblocks__can_highlight_with_classes.snap
@@ -0,0 +1,11 @@
+---
+source: components/markdown/tests/codeblocks.rs
+expression: body
+---
+<link
+ rel="stylesheet"
+ type="text/css"
+ href="main.css"
+/>
+
+