2016-03-02 20:49:58 +01:00
|
|
|
syntax "Markdown" "\.(md|mkd|mkdn|markdown)$"
|
2013-06-01 22:59:28 +02:00
|
|
|
|
2016-02-28 14:15:46 +01:00
|
|
|
# Tables (Github extension)
|
|
|
|
color cyan ".*[ :]\|[ :].*"
|
|
|
|
|
|
|
|
# quotes
|
2017-12-21 06:49:51 +01:00
|
|
|
color brightblack start="^>" end="^$"
|
2016-02-28 14:15:46 +01:00
|
|
|
color brightblack "^>.*"
|
|
|
|
|
2013-06-01 22:59:28 +02:00
|
|
|
# Emphasis
|
|
|
|
color green "(^|[[:space:]])(_[^ ][^_]*_|\*[^ ][^*]*\*)"
|
|
|
|
|
|
|
|
# Strong emphasis
|
|
|
|
color brightgreen "(^|[[:space:]])(__[^ ][^_]*__|\*\*[^ ][^*]*\*\*)"
|
|
|
|
|
2016-02-28 14:15:46 +01:00
|
|
|
# strike-through
|
|
|
|
color red "(^|[[:space:]])~~[^ ][^~]*~~"
|
|
|
|
|
|
|
|
# horizontal rules
|
|
|
|
color brightmagenta "^(---+|===+|___+|\*\*\*+)\s*$"
|
|
|
|
|
|
|
|
# headlines
|
|
|
|
color brightmagenta "^#{1,6}.*"
|
|
|
|
|
|
|
|
# lists
|
2013-06-01 22:59:28 +02:00
|
|
|
color blue "^[[:space:]]*[\*+-] |^[[:space:]]*[0-9]+\. "
|
2016-02-28 14:15:46 +01:00
|
|
|
|
|
|
|
# leading whitespace
|
2013-06-01 22:59:28 +02:00
|
|
|
color black "^[[:space:]]+"
|
|
|
|
|
2016-02-28 14:15:46 +01:00
|
|
|
# misc
|
|
|
|
color magenta "\(([CcRr]|[Tt][Mm])\)" "\.{3}" "(^|[[:space:]])\-\-($|[[:space:]])"
|
|
|
|
|
|
|
|
# links
|
|
|
|
color brightblue "\[[^]]+\]"
|
|
|
|
color brightblue "\[([^][]|\[[^]]*\])*\]\([^)]+\)"
|
|
|
|
|
|
|
|
# images
|
|
|
|
color magenta "!\[[^][]*\](\([^)]+\)|\[[^]]+\])"
|
|
|
|
|
|
|
|
# urls
|
|
|
|
color brightyellow "https?://[^ )>]+"
|
|
|
|
|
|
|
|
# code
|
|
|
|
color yellow "`[^`]*`|^ {4}[^-+*].*"
|
|
|
|
# code blocks
|
|
|
|
color yellow start="^```[^$]" end="^```$"
|
|
|
|
color yellow "^```$"
|
2016-12-06 22:06:12 +01:00
|
|
|
|
|
|
|
## Trailing spaces
|
|
|
|
color ,green "[[:space:]]+$"
|