# Syntax support file for the Lumina Text Editor # =================================== # Markdown language support rules # Written by Zackary Welch # 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" } ] }