webgen/webgen.py
Wolfgang Nowak 52a62d7dcf Beautified
2021-10-28 18:56:02 +02:00

113 lines
3.4 KiB
Python
Executable file

#!/usr/bin/env python3
import sys, os, uuid, shutil, subprocess, markdown, re, datetime
targetdir = os.path.expanduser("~/www/i21k.de/posts/")
fileending = ""
def edit(headline):
editor = os.getenv("EDITOR")
if not editor:
editor = "vim"
subprocess.call([editor, headline])
return headline
# Parse arguments "--html" and "Some Headline"
# there are 2 parameters. if --html is given, the fileending will be .html.
# Else there will be no fileending, but it will still contain html
optwords = ["--html", "--stdout"]
outfile = ""
args = sys.argv
myname = args.pop(0)
for wish in optwords:
if args.count(wish):
if wish == "--html":
fileending = ".html"
args.pop(args.index(wish))
if wish == "--stdout":
outfile = sys.stdout
args.pop(args.index(wish))
if len(args) == 1:
headline = args[0]
elif len(args) == 0:
headline = input("Please enter a headline: ")
elif len(args) > 1:
sys.exit("Too much or wrong parameters:\n" + myname + ' [--html] [--stdout] ["Some Topic"] ')
headlinemd = headline + ".md"
headlinehtml = headline + fileending
creationtime = datetime.datetime.now().strftime("%Y-%m-%d %H:00 ")
creationtimeheader = datetime.datetime.now().strftime("%Y-%m-%d %H:%M")
if outfile != sys.stdout:
new_file_name = targetdir + creationtime + " " + headline + fileending
else:
new_file_name = "STDOUT"
print("You will edit now: ", headlinemd, "\n", "Outputfile= ", new_file_name)
a = input("Press <RETURN> to continue or <CTRL-C> to stop: ")
edit(headlinemd)
if outfile != sys.stdout:
html_out_file = open(new_file_name, "w")
else:
html_out_file = outfile
head1 = (
'<!DOCTYPE HTML><html><head>\n\
<meta http-equiv="content-type" content="tfileending/html; charset=UTF-8">\n<title>'
+ headline
+ '</title>\n\
<meta name="syntax" content="markdown">\n\
<meta name="generator" content="'
+ myname
+ ' markdown2htmlconverter">\n\
<meta name="settings" content="use_css,pre_wrap,no_foldcolumn,expand_tabs,prevent_copy=">\n\
<meta name="ctime" content="'
+ creationtimeheader
+ '"> '
)
# Some fancy css for minimalistic terminal style
styles = " <!--\n\
* { font-family: monospace; color: #00f020; background-color: #1c1414; font-size: 1.15em; }\n\
a { font-size: 1.0em;}\n\
ul { font-size: 1.15em;}\n\
p { font-size: 1.15em;}\n\
li { font-size: 1.15em;}\n\
ol { font-size: 1.0em;}\n\
em { font-size: 1.0em;}\n\
table { background-color: #1c1414; }\n\
blockquote { font-size: 1.15em; }\n\
body { font-family: monospace; color: #00f020; background-color: #1c1414; }\n\
pre { white-space: pre-wrap; font-family: monospace; color: #00f020; font-background-color: #1c1414; }\n\
.Statement { color: #00f020; font-weight: bold; }\n\
.Headandfoot { color: #00f020; font-weight: bold; } "
style_fn = '<link rel="stylesheet" type="text/css" href="/vimstyles.css">'
head2 = "</head><body>\n"
body1 = '<a href="./">Back</a>'
foot = "</body> </html>\n"
html_out_file.write(head1 + style_fn + head2 + body1)
# Centerpiece - read md-file, convert to html, add head and foot and write result
with open(headlinemd, "r", encoding="utf-8") as infile:
md_data = infile.read()
html_output = markdown.markdown(md_data)
html_out_file.write(html_output)
html_out_file.write(foot)
html_out_file.close()
# if it exists, return new filename to stdout, so some calling shellscript can use it.
if outfile != sys.stdout:
print(new_file_name)