Rudimentary support for building wiki archives. The content is dumped to html but the wikitext isn't parsed yet.

mwparserfromhell is used for parsing wikitext but it has no support for rendering to HTML so we'll have to build it manually.
This commit is contained in:
2020-08-11 10:44:06 -05:00
parent 3cb08e2d2f
commit dc0191a04a
8 changed files with 5726 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ setup(
description='Tools for exporting and creating archives of Glitch City Labs data',
author='Adrian Kuschelyagi Malacoda',
packages=['epilogue'],
install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0'],
install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0', 'mwparserfromhell >= 0.5.4'],
entry_points={
'console_scripts': [
'epilogue = epilogue:main'