summaryrefslogtreecommitdiff
path: root/src/syntax/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/mod.rs')
-rw-r--r--src/syntax/mod.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/syntax/mod.rs b/src/syntax/mod.rs
index 41fba134..409e8cbf 100644
--- a/src/syntax/mod.rs
+++ b/src/syntax/mod.rs
@@ -63,9 +63,10 @@ mod tests {
roundtrip("= *Ok*");
// Raw.
+ roundtrip("``");
roundtrip("`lang 1`");
- test("`` hi``", "`hi`");
- test("`` ` ``", "```");
+ test("``` hi```", "`hi`");
+ test("``` ` ```", "```");
}
#[test]