Fix broken Regex

see ebe557e557/markdown.nanorc (L12)
This commit is contained in:
Thomas Rosenau 2016-02-28 13:44:02 +01:00
parent 82e70080bf
commit a22418d7a6

View File

@ -6,12 +6,27 @@ color green "(^|[[:space:]])(_[^ ][^_]*_|\*[^ ][^*]*\*)"
# Strong emphasis
color brightgreen "(^|[[:space:]])(__[^ ][^_]*__|\*\*[^ ][^*]*\*\*)"
# headlines
color brightmagenta "^=====*$|^-----*$|^#{1,6}.*"
# lists
color blue "^[[:space:]]*[\*+-] |^[[:space:]]*[0-9]+\. "
# leading whitespace
color black "^[[:space:]]+"
color magenta "\(([CcRr]|[Tt][Mm])\)" "\.{3}" "(^|[[:space:]])\-\-($$)"
# misc
color magenta "\(([CcRr]|[Tt][Mm])\)" "\.{3}" "(^|[[:space:]])\-\-($|[[:space:]])"
# images
color brightyellow "\!?\[[^]]*\]([[:space:]]*\[[^]]*\]|\(.*\))?"
# links
color brightyellow "^\[.*\]:[[:space:]]*[^"]*"
# code
color yellow "`[^`]*`|^ {4}[^-+*].*"
# quotes
color brightblack "^>.*"