1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-24 03:54:20 +00:00

Remove unsupported kwargs

This commit is contained in:
Steffo 2018-07-21 19:38:44 +02:00
parent 19e064f232
commit 22703a5972

View file

@ -176,7 +176,7 @@ def page_wiki(key: str):
db_session.close()
if wiki_page is None:
return render_template("wiki.html", key=key)
converted_md = Markup(markdown2.markdown(escape(wiki_page.content), output_format="html5"),
converted_md = Markup(markdown2.markdown(escape(wiki_page.content)),
extras=["spoiler", "tables"])
return render_template("wiki.html", key=key, wiki_page=wiki_page, converted_md=converted_md,
wiki_log=wiki_latest_edit)