From 33a3f7c937fd6ec292aebb21129f7ab1ec516281 Mon Sep 17 00:00:00 2001 From: Aadhavan Srinivasan Date: Mon, 21 Apr 2025 11:47:43 -0400 Subject: [PATCH] Added a Markdown config file --- config/md.conf | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 config/md.conf diff --git a/config/md.conf b/config/md.conf new file mode 100644 index 0000000..cbf4d32 --- /dev/null +++ b/config/md.conf @@ -0,0 +1,13 @@ +# 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 +'##?#?#?#?#?.*': MAGENTA + +# Code blocks +'```(.|\n)+?```': YELLOW + +# Bold text +'\b__[^_]+?__\b': BOLD_WHITE + +# Italic text +'\b_[^_]+?_\b': ITALIC_WHITE