X-Git-Url: https://git.madduck.net/etc/mutt.git/blobdiff_plain/0c626c930aedb5a23abb0dac7544320c9e989958..0e22b3603ff0a4f8c672ff9585b32ccb2ee4c424:/.mutt/markdown2html diff --git a/.mutt/markdown2html b/.mutt/markdown2html index fba4606..7853ae5 100755 --- a/.mutt/markdown2html +++ b/.mutt/markdown2html @@ -70,7 +70,17 @@ DEFAULT_CSS += ''' white-space: pre; margin: 1em 0 0 0; font-size: 80%; -}''' +} +table, th, td { + border-collapse: collapse; + border: 1px solid #999; +} +th, td { padding: 0.5em; } +.header { + background: #eee; +} +.even { background: #eee; } +''' STYLESHEET = os.path.join(os.path.expanduser('~/.mutt'), 'markdown2html.css') @@ -221,6 +231,7 @@ def _convert_with_pandoc(mdwn, inputfmt='markdown', outputfmt='html5', if not ext_disabled: ext_disabled = [ 'tex_math_single_backslash', 'tex_math_dollars', + 'smart', 'raw_html' ]