|
12345678910111213141516171819 |
-
-
-
-
-
-
-
- from flask import Blueprint, render_template
- import markdown
-
- conversations = Blueprint('conversations', __name__)
-
-
- @conversations.route('/conversations/')
- def index():
- with open('content/section_3/I-Martha-gowans.md', 'r') as f:
- text = f.read()
- text = markdown.markdown(text)
- return render_template('conversations.html', text=text)
|