s4

changeset 1019:4952d9b79b7d

Add markdown notation of ~~s~~
author HIROSE Yuuji <yuuji@gentei.org>
date Tue, 10 Oct 2023 11:20:46 +0900
parents 2fd483245e8e
children dfbf57a70bb5
files s4-funcs.sh
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line diff
     1.1 --- a/s4-funcs.sh	Sun Aug 27 08:52:32 2023 +0859
     1.2 +++ b/s4-funcs.sh	Tue Oct 10 11:20:46 2023 +0900
     1.3 @@ -660,6 +660,7 @@
     1.4        -e 's, __\([^_ |][^_]*[^ ]\)__ ,<strong>\1</strong>,g' \
     1.5        -e 's, \*\([^* |][^*|]*[^ |]\)\* ,<em>\1</em>,g' \
     1.6        -e 's, _\([^_ ][^_]*[^ ]\)_ ,<em>\1</em>,g' \
     1.7 +      -e 's,~~\([^~][^~]*\)~~,<s>\1</s>,g' \
     1.8        -e 's,\([^\\]\);;;,\1<br>,g;s,\\;;;,;;;,g' \
     1.9        -e 's,  $,<br>,' \
    1.10        -e "s,- \[  *\]\([^|-]*\),${checkboxOFF}<label>\\1</label>,g" \