You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
417 B
Plaintext
20 lines
417 B
Plaintext
# Priority decreases going downward ie. If two regexes match the same piece of
|
|
# text, the one defined earlier will take precedence over the one defined later.
|
|
# Headings
|
|
'^#{1,6}.*?$': MAGENTA
|
|
|
|
# Link text
|
|
'\[.*?\](?=\(.*?\))': UNDERLINE_WHITE
|
|
|
|
# Link URL
|
|
'https?://\w+\.\w+.*?(?=\))': RED
|
|
|
|
# Code blocks
|
|
'```(.|\n)+?```': YELLOW
|
|
|
|
# Bold text
|
|
'\b__[^_]+?__\b': BOLD_WHITE
|
|
|
|
# Italic text
|
|
'\b_[^_]+?_\b': ITALIC_WHITE
|