aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-06-15 13:49:27 -0400
committerKen Moore <ken@ixsystems.com>2017-06-15 13:49:27 -0400
commitba938deb70ef8709bc13e5886adada43cfb130be (patch)
tree74270fbaf05207c79fe146df93af955d2ee38cea /src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax
parentFix a quick bug in start-lumina-desktop where it would not stop properly if o... (diff)
downloadlumina-ba938deb70ef8709bc13e5886adada43cfb130be.tar.gz
lumina-ba938deb70ef8709bc13e5886adada43cfb130be.tar.bz2
lumina-ba938deb70ef8709bc13e5886adada43cfb130be.zip
Add a new markdown syntax highlighting format. Not quite finished yet - but has the bulk of the options so far.
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.syntax93
1 files changed, 93 insertions, 0 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
new file mode 100644
index 00000000..678431b4
--- /dev/null
+++ b/src-qt5/desktop-utils/lumina-textedit/syntax_rules/md.syntax
@@ -0,0 +1,93 @@
+# Syntax support file for the Lumina Text Editor
+# ===================================
+# Markdown language support rules
+# Written by Zackary Welch <zwelch@ixsystems.com>
+# Released under the 2-clause BSD license
+# ===================================
+
+{
+ "meta": {
+ "name": "Markdown",
+ "file_suffix": ["md", "markdown"]
+ },
+ "format": {
+ "line_wrap": true,
+ "highlight_whitespace_eol" : false,
+ "tab_width" : 4
+ },
+ "rules": [{
+ "name": "links",
+ "regex": "\\[[^\\[\\]]+\\]\\(#?[^\\s\\]\\)\\[\\(]*\\)",
+ "foreground": "colors/keyword"
+ },
+ {
+ "name": "bold",
+ "regex" : "[\\*]{2}[^\\*]+[\\*]{2}",
+ "foreground": "colors/altkeyword",
+ "font_weight" : "bold"
+ },
+ {
+ "name": "italic",
+ "regex" : "[\\*]{1}[^\\*]+[\\*]{1}",
+ "foreground": "colors/altkeyword",
+ "font_style" : "italic"
+ },
+ {
+ "name": "bold and italic",
+ "regex" : "[\\*]{3}[^\\*]+[\\*]{3}",
+ "foreground": "colors/altkeyword",
+ "font_weight" : "bold",
+ "font_style" : "italic"
+ },
+ {
+ "name": "bold",
+ "regex" : "[_]{2}[^\\*]+[_]{2}",
+ "foreground": "colors/altkeyword",
+ "font_weight" : "bold"
+ },
+ {
+ "name": "italic",
+ "regex" : "[_]{1}[^\\*]+[_]{1}",
+ "foreground": "colors/altkeyword",
+ "font_style" : "italic"
+ },
+ {
+ "name": "bold and italic",
+ "regex" : "[_]{3}[^\\*]+[_]{3}",
+ "foreground": "colors/altkeyword",
+ "font_weight" : "bold",
+ "font_style" : "italic"
+ },
+ {
+ "name" : "markup",
+ "regex": "<[a-z].*><\\/[a-z]>",
+ "foreground" : "colors/class"
+ },
+ {
+ "name" : "heading",
+ "regex": "^#+ (.)*$",
+ "foreground" : "colors/function"
+ },
+ {
+ "name" : "horizontal rule",
+ "regex": "^((\\-\\-\\-)|(\\*\\*\\*))$",
+ "foreground" : "colors/function"
+ },
+ {
+ "name" : "multi-line code block",
+ "regex_start" : "^```$",
+ "regex_end" : "^```$",
+ "foreground" : "colors/comment"
+ },
+ {
+ "name" : "in-line code block",
+ "regex" : "`([^`])+`",
+ "foreground" : "colors/comment"
+ },
+ {
+ "name" : "block quote",
+ "regex" : "^(\\> )+",
+ "foreground" : "colors/keyword"
+ }
+ ]
+}
bgstack15