diff --git a/landoc.py b/landoc.py index 99bfd6f..38ff952 100644 --- a/landoc.py +++ b/landoc.py @@ -5,6 +5,8 @@ import mimetypes import bleach from markdown_it import MarkdownIt +from config import * + app = flask.Flask(__name__) md = MarkdownIt("commonmark", {"typographer": True}).enable( ["replacements", "smartquotes"] diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..38b06ae --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +markdown_it_py +bleach +flask