diff options
author | 2019-10-01 08:25:28 +1000 | |
---|---|---|
committer | 2019-10-01 08:25:28 +1000 | |
commit | 0676efa83134c4828e9c4c131d3a89e38c449f62 (patch) | |
tree | 568beea0189cd4ae7cec31b93e04cca494d55d6b | |
parent | Create superuser after doing migrations. (diff) | |
parent | Monkeypatch in new HEADER_ID_PREFIX. (diff) |
Monkeypatch in new HEADER_ID_PREFIX. (#268)
Monkeypatch in new HEADER_ID_PREFIX.
-rw-r--r-- | pydis_site/__init__.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pydis_site/__init__.py b/pydis_site/__init__.py index e69de29b..c6146450 100644 --- a/pydis_site/__init__.py +++ b/pydis_site/__init__.py @@ -0,0 +1,4 @@ +from wiki.plugins.macros.mdx import toc + +# Remove the toc header prefix. There's no option for this, so we gotta monkey patch it. +toc.HEADER_ID_PREFIX = '' |