summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSavagePeanut <sourcehut@lazytapir.com>2024-08-28 02:51:52 -0500
committerSavagePeanut <sourcehut@lazytapir.com>2024-08-28 02:51:52 -0500
commitab36341b9b037e784bb37260f68c23ba6fb92bbc (patch)
treef8ba91a3066a01b31ab917fdc7c66b96dcd915f4
parentf4c045aa813a410d9047dfe784a6f45492c88b9e (diff)
update matrix parser to use <s>
-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>")),