|
-
-
-
-
-
-
-
-
- from flask import Blueprint, render_template
- import markdown
-
- main = Blueprint('main', __name__)
-
-
- @main.route('/')
- def index():
- return render_template('index.html')
-
-
- @main.route('/contents/')
- def contents():
- with open('content/TOC.md', 'r') as f:
- text = f.read()
- text = markdown.markdown(text)
- return render_template('text.html', text=text)
|