diff options
author | sterni <sternenseemann@systemli.org> | 2021-04-11T00·24+0200 |
---|---|---|
committer | sterni <sternenseemann@systemli.org> | 2021-04-11T20·11+0000 |
commit | 4edef59ba48eba53b258223833a36803602d4250 (patch) | |
tree | 01675f8d09b86034681a112ec5a26d3225967d2c /web/panettone/src | |
parent | d7b89df748fd9de8015602c1a7d9d36cddd96664 (diff) |
feat(panettone): don't use `_` for em in inline markdown r/2478
Since we are still using third_party, underscores are kind of common in issue titles and are probably often forgotten to escape. Let's just support `*` for emphasized text in titles for now. Change-Id: I305bcf4d4c59123bba4ce816a6da2ee8b022c34e Reviewed-on: https://cl.tvl.fyi/c/depot/+/2926 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in> Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'web/panettone/src')
-rw-r--r-- | web/panettone/src/inline-markdown.lisp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/web/panettone/src/inline-markdown.lisp b/web/panettone/src/inline-markdown.lisp index 9948a629b378..fc5f77584fc4 100644 --- a/web/panettone/src/inline-markdown.lisp +++ b/web/panettone/src/inline-markdown.lisp @@ -3,7 +3,6 @@ (define-constant +inline-markup-types+ '(("~~" :del) - ("_" :em) ("*" :em) ("`" :code)) :test #'equal) |