diff options
| author | Philipp A | 2019-12-08 16:55:21 +0100 |
|---|---|---|
| committer | Philipp A | 2019-12-08 17:13:15 +0100 |
| commit | 13ecb9436b5987237062a79c21b1630689d4715d (patch) | |
| tree | c410ed45edfff10c5d09e9c38e1fd90f1ef9f7e9 /src/renderer | |
| parent | 588f2474c4f13417c9dae18defc657fcb6c0f07e (diff) | |
| download | rust-rst-13ecb9436b5987237062a79c21b1630689d4715d.tar.bz2 | |
Render emph, strong, and literal
Diffstat (limited to 'src/renderer')
| -rw-r--r-- | src/renderer/html_tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/html_tests.rs b/src/renderer/html_tests.rs index c12890a..32871dc 100644 --- a/src/renderer/html_tests.rs +++ b/src/renderer/html_tests.rs @@ -23,8 +23,8 @@ fn test_simple_string() { #[test] fn test_simple_string_with_markup() { check_renders_to( - "Simple String with *markup*", - "<p>Simple String with <em>markup</em></p>", + "Simple String with *emph* and **strong**", + "<p>Simple String with <em>emph</em> and <strong>strong</strong></p>", ); } |
