-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b7aee4
commit 7ce0baf
Showing
4 changed files
with
66 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
from django.conf import settings as django_settings | ||
|
||
SLUG = "macros" | ||
APP_LABEL = "wiki" | ||
SLUG = 'macros' | ||
APP_LABEL = 'wiki' | ||
|
||
#: List of markdown extensions this plugin should support. | ||
#: ``article_list`` inserts a list of articles from the current level. | ||
#: ``toc`` inserts a table of contents matching the headings. | ||
METHODS = getattr( | ||
django_settings, | ||
"WIKI_PLUGINS_METHODS", | ||
( | ||
"article_list", | ||
"toc", | ||
), | ||
) | ||
'WIKI_PLUGINS_METHODS', | ||
('article_list', | ||
'toc', | ||
'wikilink', | ||
'ex', | ||
'gex', | ||
'p', | ||
'pspecial', | ||
'ss', | ||
'exref', | ||
)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters