Last active
July 20, 2020 07:07
-
-
Save domingogallardo/db9278988113d1b6dff060a16d2db333 to your computer and use it in GitHub Desktop.
Comando que llama a Python-Markdown para convertir un fichero Markdown en HTML incluyendo un fichero CSS.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Comando que llama a Python-Markdown para convertir un fichero | |
# Markdown en HTML incluyendo un fichero CSS. | |
# | |
# Ejemplo de llamada: | |
# | |
# python3 ./generator.py my-file.md my-style.css my-file.html | |
# | |
# Necesario: Python3 y Python-Markdown | |
# | |
# brew install python | |
# pip3 install markdown | |
# | |
# python-markown: https://python-markdown.github.io | |
# Extensiones: https://python-markdown.github.io/extensions/ | |
# | |
import markdown, codecs, sys | |
output = """<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
""" | |
cssin = codecs.open(sys.argv[2], mode="r", encoding="utf-8") | |
output += cssin.read() | |
output += """ | |
</head> | |
<body> | |
""" | |
mkin = open(sys.argv[1]) | |
output += markdown.markdown(mkin.read(), extensions = ['admonition', 'extra', 'sane_lists', 'codehilite', 'pymdownx.superfences']) | |
output += """</body> | |
</html> | |
""" | |
outfile = codecs.open(sys.argv[3], "w", | |
encoding="utf-8", | |
errors="xmlcharrefreplace" | |
) | |
outfile.write(output) | |
outfile.close() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
/* Codehilite */ | |
.hll { background-color: #ffffcc } | |
.c { color: #408080; font-style: italic } /* Comment */ | |
.err { border: 1px solid #FF0000 } /* Error */ | |
.k { color: #008000; font-weight: bold } /* Keyword */ | |
.o { color: #666666 } /* Operator */ | |
.ch { color: #408080; font-style: italic } /* Comment.Hashbang */ | |
.cm { color: #408080; font-style: italic } /* Comment.Multiline */ | |
.cp { color: #BC7A00 } /* Comment.Preproc */ | |
.cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */ | |
.c1 { color: #408080; font-style: italic } /* Comment.Single */ | |
.cs { color: #408080; font-style: italic } /* Comment.Special */ | |
.gd { color: #A00000 } /* Generic.Deleted */ | |
.ge { font-style: italic } /* Generic.Emph */ | |
.gr { color: #FF0000 } /* Generic.Error */ | |
.gh { color: #000080; font-weight: bold } /* Generic.Heading */ | |
.gi { color: #00A000 } /* Generic.Inserted */ | |
.go { color: #888888 } /* Generic.Output */ | |
.gp { color: #000080; font-weight: bold } /* Generic.Prompt */ | |
.gs { font-weight: bold } /* Generic.Strong */ | |
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */ | |
.gt { color: #0044DD } /* Generic.Traceback */ | |
.kc { color: #008000; font-weight: bold } /* Keyword.Constant */ | |
.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ | |
.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ | |
.kp { color: #008000 } /* Keyword.Pseudo */ | |
.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ | |
.kt { color: #B00040 } /* Keyword.Type */ | |
.m { color: #666666 } /* Literal.Number */ | |
.s { color: #BA2121 } /* Literal.String */ | |
.na { color: #7D9029 } /* Name.Attribute */ | |
.nb { color: #008000 } /* Name.Builtin */ | |
.nc { color: #0000FF; font-weight: bold } /* Name.Class */ | |
.no { color: #880000 } /* Name.Constant */ | |
.nd { color: #AA22FF } /* Name.Decorator */ | |
.ni { color: #999999; font-weight: bold } /* Name.Entity */ | |
.ne { color: #D2413A; font-weight: bold } /* Name.Exception */ | |
.nf { color: #0000FF } /* Name.Function */ | |
.nl { color: #A0A000 } /* Name.Label */ | |
.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ | |
.nt { color: #008000; font-weight: bold } /* Name.Tag */ | |
.nv { color: #19177C } /* Name.Variable */ | |
.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ | |
.w { color: #bbbbbb } /* Text.Whitespace */ | |
.mb { color: #666666 } /* Literal.Number.Bin */ | |
.mf { color: #666666 } /* Literal.Number.Float */ | |
.mh { color: #666666 } /* Literal.Number.Hex */ | |
.mi { color: #666666 } /* Literal.Number.Integer */ | |
.mo { color: #666666 } /* Literal.Number.Oct */ | |
.sa { color: #BA2121 } /* Literal.String.Affix */ | |
.sb { color: #BA2121 } /* Literal.String.Backtick */ | |
.sc { color: #BA2121 } /* Literal.String.Char */ | |
.dl { color: #BA2121 } /* Literal.String.Delimiter */ | |
.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ | |
.s2 { color: #BA2121 } /* Literal.String.Double */ | |
.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ | |
.sh { color: #BA2121 } /* Literal.String.Heredoc */ | |
.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ | |
.sx { color: #008000 } /* Literal.String.Other */ | |
.sr { color: #BB6688 } /* Literal.String.Regex */ | |
.s1 { color: #BA2121 } /* Literal.String.Single */ | |
.ss { color: #19177C } /* Literal.String.Symbol */ | |
.bp { color: #008000 } /* Name.Builtin.Pseudo */ | |
.fm { color: #0000FF } /* Name.Function.Magic */ | |
.vc { color: #19177C } /* Name.Variable.Class */ | |
.vg { color: #19177C } /* Name.Variable.Global */ | |
.vi { color: #19177C } /* Name.Variable.Instance */ | |
.vm { color: #19177C } /* Name.Variable.Magic */ | |
.il { color: #666666 } /* Literal.Number.Integer.Long */ | |
/* Estilo MADS */ | |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
background-color: white; | |
padding: 60px; | |
} | |
pre { | |
background-color: #f8f8f8; | |
border: 1px solid #cccccc; | |
font-size: 13px; | |
line-height: 19px; | |
overflow: auto; | |
padding: 6px 10px; | |
border-radius: 3px; | |
} | |
table { | |
padding: 0;border-collapse: collapse; } | |
table tr { | |
border-top: 1px solid #cccccc; | |
background-color: white; | |
margin: 0; | |
padding: 0; } | |
table tr:nth-child(2n) { | |
background-color: #f8f8f8; } | |
table tr th { | |
font-weight: bold; | |
border: 1px solid #cccccc; | |
margin: 0; | |
padding: 6px 13px; } | |
table tr td { | |
border: 1px solid #cccccc; | |
margin: 0; | |
padding: 6px 13px; } | |
table tr th :first-child, table tr td :first-child { | |
margin-top: 0; } | |
table tr th :last-child, table tr td :last-child { | |
margin-bottom: 0; } | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment