Implemented markdown support in the post body to enhance text formatting capabilities. This change allows users to enter markdown in the create/update interface and have it rendered as HTML in the main blog interface. The markdown library was imported and utilized to convert markdown text to HTML in the blog index view. Additionally, updated the form labels to indicate markdown support and ensured safe rendering of HTML content in the blog index template. Issue ID: FLAS-67
19 lines
711 B
HTML
19 lines
711 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}Edit "{{ post['title'] }}"{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<label for="title">Title</label>
|
|
<input name="title" id="title" value="{{ request.form['title'] or post['title'] }}" required>
|
|
<label for="body">Body (Markdown supported)</label>
|
|
<textarea name="body" id="body">{{ request.form['body'] or post['body'] }}</textarea>
|
|
<input type="submit" value="Save">
|
|
</form>
|
|
<hr>
|
|
<form action="{{ url_for('blog.delete', id=post['id']) }}" method="post">
|
|
<input class="danger" type="submit" value="Delete" onclick="return confirm('Are you sure?');">
|
|
</form>
|
|
{% endblock %}
|