Add sending notice support && tweak markdown.

This commit is contained in:
Black Hat
2018-07-12 19:40:16 +08:00
parent 06c6d7a74d
commit a1941784eb
4 changed files with 18 additions and 36 deletions

View File

@@ -54,7 +54,7 @@ var markdown_parser = function(str){
// bold
['/(\\*\\*|__)(.*?)\\1/g', '<strong>\\2</strong>'],
// emphasis
['/(\\*|_)(.*?)\\1/g', '<em>\\2</em>'],
['/(\\*|_)(.*?)\\1/g', '<i>\\2</i>'],
// strike
['/(\\~\\~)(.*?)\\1/g', '<del>\\2</del>'],
// quote