added utility to remove fenced code blocks from final html docs since srcweave is a pain in that regard
This commit is contained in:
parent
f2b572946a
commit
ca5c748478
13
util/removefencedcode.py
Executable file
13
util/removefencedcode.py
Executable file
@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# Remove fenced code blocks from generated HTML files
|
||||||
|
# We need to do this because srcweave does not support fenced code blocks
|
||||||
|
|
||||||
|
import glob
|
||||||
|
for f in glob.glob('docs/*.html'):
|
||||||
|
with open(f, 'r') as fin:
|
||||||
|
lines = fin.readlines()
|
||||||
|
with open(f, 'w') as fout:
|
||||||
|
for line in lines:
|
||||||
|
if line.startswith('<p>```'):
|
||||||
|
continue
|
||||||
|
fout.write(line)
|
Loading…
Reference in New Issue
Block a user