diff options
author | ZackaryWelch <welch.zackary@gmail.com> | 2017-06-16 14:07:10 -0400 |
---|---|---|
committer | ZackaryWelch <welch.zackary@gmail.com> | 2017-06-16 14:07:32 -0400 |
commit | ff88b18285ce9724c8f3091f2fb9d8bde4f8bb75 (patch) | |
tree | 615c0941074c61c1f3bcc6433cd1f88583d03d05 /src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax | |
parent | Minor debugging change in lumina-fm (diff) | |
download | lumina-ff88b18285ce9724c8f3091f2fb9d8bde4f8bb75.tar.gz lumina-ff88b18285ce9724c8f3091f2fb9d8bde4f8bb75.tar.bz2 lumina-ff88b18285ce9724c8f3091f2fb9d8bde4f8bb75.zip |
Updated Markdown syntax
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax')
-rw-r--r-- | src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax index 294c2c68..89146c62 100644 --- a/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax +++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax @@ -22,38 +22,38 @@ }, { "name": "bold", - "regex" : "[\\*]{2}[^\\*]+[\\*]{2}", + "regex" : "[\\*]{2}[^\\*\\_\\s]+[\\*]{2}", "foreground": "colors/altkeyword", "font_weight" : "bold" }, { "name": "italic", - "regex" : "[\\*]{1}[^\\*]+[\\*]{1}", + "regex" : "[\\*]{1}[^\\*\\_\\s]+[\\*]{1}", "foreground": "colors/altkeyword", "font_style" : "italic" }, { "name": "bold and italic", - "regex" : "[\\*]{3}[^\\*]+[\\*]{3}", + "regex" : "[\\*]{3}[^\\s]*[^\\*\\_]+[^\\s]*[\\*]{3}", "foreground": "colors/altkeyword", "font_weight" : "bold", "font_style" : "italic" }, { "name": "bold", - "regex" : "[_]{2}[^\\*]+[_]{2}", + "regex" : "[_]{2}[^\\*\\_\\s]+[_]{2}", "foreground": "colors/altkeyword", "font_weight" : "bold" }, { "name": "italic", - "regex" : "[_]{1}[^\\*]+[_]{1}", + "regex" : "[_]{1}[^\\*\\_\\s]+[_]{1}", "foreground": "colors/altkeyword", "font_style" : "italic" }, { "name": "bold and italic", - "regex" : "[_]{3}[^\\*]+[_]{3}", + "regex" : "[_]{3}[^\\s]*[^\\*\\_]+[^\\s]*[_]{3}", "foreground": "colors/altkeyword", "font_weight" : "bold", "font_style" : "italic" @@ -70,7 +70,7 @@ }, { "name" : "horizontal rule", - "regex": "^((\\-[\\s]?\\-[\\s]?\\-[\\s]?)|(\\*\\*\\*))$", + "regex": "^((\\-\\s*\\-\\s*\\-\\s*)|(\\*\\s*\\*\\s*\\*)|(\\_\\s*\\_\\s*\\_\\s*))$", "foreground" : "colors/function" }, { |