X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/a83d50d5a64488deb3796bbd0ca0a03b0516cc77:/.mutt/markdown2html..7013dfe93a05082153f79eca6c9e5c05b54d9d50:/.config/mutt/markdown2html diff --git a/.mutt/markdown2html b/.config/mutt/markdown2html similarity index 98% rename from .mutt/markdown2html rename to .config/mutt/markdown2html index 487d3db..309c22e 100755 --- a/.mutt/markdown2html +++ b/.config/mutt/markdown2html @@ -14,7 +14,7 @@ # set send_multipart_alternative=yes # set send_multipart_alternative_filter=/path/to/markdown2html.py # -# Optionally, Custom CSS styles will be read from `~/.mutt/markdown2html.css`, +# Optionally, Custom CSS styles will be read from `~/.config/mutt/markdown2html.css`, # if present. # # Requirements: @@ -98,7 +98,7 @@ p { padding: 0 0.5em; } pre { padding: 0 1em; } ''' -STYLESHEET = os.path.join(os.path.expanduser('~/.mutt'), +STYLESHEET = os.path.join(os.path.expanduser('~/.config/mutt'), 'markdown2html.css') if os.path.exists(STYLESHEET): DEFAULT_CSS += open(STYLESHEET).read()