]> git.proxmox.com Git - mirror_frr.git/blame_incremental - tools/render_md.py
Merge pull request #13649 from donaldsharp/unlock_the_node_or_else
[mirror_frr.git] / tools / render_md.py
... / ...
CommitLineData
1#!/usr/bin/env python
2# SPDX-License-Identifier: NONE
3# written 2016 by David Lamparter, placed in Public Domain.
4import sys, markdown
5
6template = """<html><head><meta charset="UTF-8"><style type="text/css">
7body { max-width: 45em; margin: auto; margin-top: 2em; margin-bottom: 2em;
8 font-family:Fira Sans,sans-serif; text-align: justify;
9 counter-reset: ch2; }
10pre, code { font-family:Fira Mono,monospace; }
11pre > code { display: block; padding:0.5em; border:1px solid black;
12 background-color:#eee; color:#000; }
13h2:before { content: counter(ch2) ". "; counter-increment: ch2; }
14h2 { clear: both; margin-top: 3em; text-decoration: underline; counter-reset: ch3; }
15h3:before { content: counter(ch2) "." counter(ch3) ". "; counter-increment: ch3; }
16h3 { clear: both; margin-top: 2em; font-weight: normal; font-style: italic; }
17h4 { font-weight: normal; font-style: italic; }
18img[alt~="float-right"] { float:right; margin-left:2em; margin-bottom:2em; }
19</style></head><body>
20%s
21</body></html>
22"""
23
24md = markdown.Markdown(extensions=["extra", "toc"])
25
26for fn in sys.argv[1:]:
27 with open(fn, "r") as ifd:
28 with open("%s.html" % (fn), "w") as ofd:
29 ofd.write(
30 (template % (md.convert(ifd.read().decode("UTF-8")))).encode("UTF-8")
31 )