Render wiki markdown while we're writing it.
This commit is contained in:
parent
82bc922cca
commit
01f2cdbf4a
1 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
import os
|
import os
|
||||||
|
import markdown
|
||||||
|
|
||||||
from . import common
|
from . import common
|
||||||
from . import tsdb
|
from . import tsdb
|
||||||
|
@ -14,11 +15,15 @@ def get_wiki(subreddit):
|
||||||
if wikipage.name == 'config/stylesheet':
|
if wikipage.name == 'config/stylesheet':
|
||||||
continue
|
continue
|
||||||
|
|
||||||
wikipage_path = database.wiki_dir.join(wikipage.name).replace_extension('md')
|
wikipage_path = database.wiki_dir.join(wikipage.name).add_extension('md')
|
||||||
wikipage_path.parent.makedirs(exist_ok=True)
|
wikipage_path.parent.makedirs(exist_ok=True)
|
||||||
with wikipage_path.open('w', encoding='utf-8') as handle:
|
wikipage_path.write('w', wikipage.content_md, encoding='utf-8')
|
||||||
handle.write(wikipage.content_md)
|
|
||||||
print('Wrote', wikipage_path.relative_path)
|
print('Wrote', wikipage_path.relative_path)
|
||||||
|
|
||||||
|
html_path = wikipage_path.replace_extension('html')
|
||||||
|
escaped = wikipage.content_md.replace('<', '<').replace('>', '&rt;')
|
||||||
|
html_path.write('w', markdown.markdown(escaped, output_format='html5'), encoding='utf-8')
|
||||||
|
print('Wrote', html_path.relative_path)
|
||||||
|
|
||||||
def get_wiki_argparse(args):
|
def get_wiki_argparse(args):
|
||||||
return get_wiki(args.subreddit)
|
return get_wiki(args.subreddit)
|
||||||
|
|
Loading…
Reference in a new issue