Compare commits

..

No commits in common. "98a8fbdc0cc62d9cd46e805c4309307e56c7df85" and "5cbcfc673f2253cbd2186ffc56ce87f739350bf2" have entirely different histories.

3 changed files with 72 additions and 82 deletions

View File

@ -69,7 +69,7 @@ def get_pandoc_page(page):
template = data['template'] template = data['template']
with open(f'{path}/render.html', 'r') as f: with open(f'{path}/render.html', 'r') as f:
inserted = f.read() inserted = f.read()
return render_template(template, markdown=inserted, config=data) return render_template(template, markdown=inserted)
@app.route('/') @app.route('/')

View File

@ -38,8 +38,6 @@ a {
white-space: pre; /* for some weird reason this affects pre blocks */ white-space: pre; /* for some weird reason this affects pre blocks */
} }
/* BEGIN ALGORITHMICA OLD STYLE */
body { body {
/* color: #444; */ /* color: #444; */
font-family: "Times New Roman", Times, "Tinos", serif; font-family: "Times New Roman", Times, "Tinos", serif;
@ -546,10 +544,6 @@ a[href=''] {
cursor: default; cursor: default;
} }
/* END OLD ALGORITHMICA STYLE */
/* BEGIN PANDOC EMBEDDED STYLE FOR CODE */
code{white-space: pre-wrap;} code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;} span.smallcaps{font-variant: small-caps;}
span.underline{text-decoration: underline;} span.underline{text-decoration: underline;}
@ -620,4 +614,4 @@ code span.va { color: #19177c; } /* Variable */
code span.vs { color: #4070a0; } /* VerbatimString */ code span.vs { color: #4070a0; } /* VerbatimString */
code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */ code span.wa { color: #60a0b0; font-weight: bold; font-style: italic; } /* Warning */
/* END PANDOC EMBEDDED STYLE FOR CODE */

View File

@ -11,10 +11,6 @@
</head> </head>
<body> <body>
<div class="pagehead">
</div>
<div class="pagebody">
{{markdown|safe}} {{markdown|safe}}
</div>
</body> </body>
</html> </html>