summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/matrix.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/matrix.rs b/src/matrix.rs
index 981d906..86d4545 100644
--- a/src/matrix.rs
+++ b/src/matrix.rs
@@ -5,7 +5,7 @@ use crate::parser::parse_with_limits;
const DUAL_TAGS: &[(&'static str, (&'static str, &'static str))] = &[
("_", ("<em>", "</em>")),
("*", ("<strong>", "</strong>")),
- ("~", ("<strike>", "</strike>")),
+ ("~", ("<s>", "</s>")),
("`", ("<code>", "</code>")),
("```", ("<pre><code>", "</code></pre>")),
("```language", ("<pre><code class=\"language-{}\">", "</code></pre>")),