-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathpelicanconf.py
More file actions
86 lines (73 loc) · 2.34 KB
/
pelicanconf.py
File metadata and controls
86 lines (73 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
import os
# Need to update path with current directory in order to
# read file with custom jinja filters
import sys
sys.path.append(".")
import custom_jinja_filters
AUTHOR = os.environ.get("PELICAN_AUTHOR", "MITRE")
SITENAME = os.environ.get("PELICAN_SITENAME", "ATT&CK")
SITEURL = os.environ.get("PELICAN_SITEURL", "")
PATH = "content"
TIMEZONE = os.environ.get("PELICAN_TIMEZONE", "America/New_York")
DEFAULT_LANG = os.environ.get("PELICAN_DEFAULT_LANG", "en")
THEME = "attack-theme"
PLUGINS = ["sitemap"]
SITEMAP = {
"format": "xml",
"priorities": {
"articles": 0.5,
"indexes": 0.5,
"pages": 0.5,
},
"changefreqs": {
"articles": "monthly",
"indexes": "daily",
"pages": "monthly",
},
"exclude": [
r"^404\.html$",
r"^versions/",
],
}
ARCHIVES_SAVE_AS = ""
AUTHOR_SAVE_AS = ""
AUTHORS_SAVE_AS = ""
CATEGORY_SAVE_AS = ""
CATEGORIES_SAVE_AS = ""
TAGS_SAVE_AS = ""
# Feed generation is usually not desired when developing
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
DEFAULT_PAGINATION = False
STATIC_PATHS = ["docs"]
ARTICLE_PATHS = ["pages/updates"]
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = False
JINJA_FILTERS = {
"from_json": custom_jinja_filters.json.loads,
"flatten_tree": custom_jinja_filters.flatten_tree,
"clean_path": custom_jinja_filters.clean_path,
"remove_whitespace": custom_jinja_filters.remove_whitespace,
"escape_spaces": custom_jinja_filters.escape_spaces,
"stixToHTML": custom_jinja_filters.stixToHTML,
"permalink": custom_jinja_filters.permalink,
}
MARKDOWN = {
"extension_configs": {
# defaults
"markdown.extensions.codehilite": {"css_class": "highlight"},
"markdown.extensions.extra": {},
"markdown.extensions.meta": {},
# This is for enabling the TOC generation: https://python-markdown.github.io/extensions/toc/
"markdown.extensions.toc": {"anchorlink": True},
# Turns new lines into HTML breaks, like GitHub and StackOverflow: https://python-markdown.github.io/extensions/nl2br/
"markdown.extensions.nl2br": {},
},
"output_format": "html5",
}