diff options
| author | SavagePeanut <sourcehut@lazytapir.com> | 2024-08-28 02:51:52 -0500 |
|---|---|---|
| committer | SavagePeanut <sourcehut@lazytapir.com> | 2024-08-28 02:51:52 -0500 |
| commit | ab36341b9b037e784bb37260f68c23ba6fb92bbc (patch) | |
| tree | f8ba91a3066a01b31ab917fdc7c66b96dcd915f4 /src | |
| parent | f4c045aa813a410d9047dfe784a6f45492c88b9e (diff) | |
update matrix parser to use <s>
Diffstat (limited to 'src')
| -rw-r--r-- | src/matrix.rs | 2 |
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>")), |
