]> git.madduck.net Git - etc/mutt.git/blobdiff - .config/mutt/markdown2html

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

move mutt config to ~/.config
[etc/mutt.git] / .config / mutt / markdown2html
similarity index 98%
rename from .mutt/markdown2html
rename to .config/mutt/markdown2html
index 487d3db98ab227baca19a888d6cd925b7b412d8f..309c22e6a97926e43b8ed46af71dc2554172242c 100755 (executable)
@@ -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()