]> git.madduck.net Git - etc/mutt.git/commitdiff

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:

enable reading from a file instead of stdin
authormartin f. krafft <madduck@madduck.net>
Sat, 20 Aug 2022 19:48:30 +0000 (21:48 +0200)
committermartin f. krafft <madduck@madduck.net>
Sat, 20 Aug 2022 19:48:30 +0000 (21:48 +0200)
.config/mutt/markdown2html

index d5fa609cdc45de0f350840ed1a36d14e320f11cb..327dff28ee7d6e1f0de32a772b5584d4330c9201 100755 (executable)
@@ -328,10 +328,11 @@ def main():
     Convert text on stdin to HTML, and print it to stdout, like mutt would
     expect.
     '''
-    html = convert_markdown_to_html(sys.stdin.read())
-    if html:
-        # mutt expects the content type in the first line, so:
-        print(f'text/html\n\n{html}')
+    with open(sys.argv[1], 'r') if len(sys.argv) > 1 else sys.stdin as f:
+        html = convert_markdown_to_html(f.read())
+        if html:
+            # mutt expects the content type in the first line, so:
+            print(f'text/html\n\n{html}')
 
 
 if __name__ == '__main__':