{% extends "base_user.html" %} {% block content %}
{% if note and note_form != None %}
{{ note.title }}
{% else %}
{{ note.title }}
{% endif %} {% if note and note.category != None %}
{{ note.category.name }}
{% endif %}
{{ note.transformed_text|safe }}
{% if note and note_form != None %}
{% csrf_token %}
{% csrf_token %} {{ note_form.as_p }} Category {% for category in categories %} {% endfor %}
{% else %}
{% csrf_token %} {{ note_form.as_p }} Category {% for category in categories %} {% endfor %}
{% endif %} Markdown syntax

_italic_
italic
**bold**
bold
~~line through~~
line through
~underline~
underline
>Citation

	  * Unordered list
	  * Second element
	
  • Unordered list
  • Second element
	  1. Ordered list
	  1. Second element
	
  1. Ordered list
  2. Second element
![Picture](https://bits.wikimedia.org/images/wikimedia-button.png)
Picture
#[Inline Picture](https://bits.wikimedia.org/images/wikimedia-button.png)
Picture
[Link](http://www.wikipedia.org)
Link

	  Code : 4 whitespaces ahead OR
	  ```language
	  Code
	  ```
	
# Title # or
	  Title
	  =====

Title

## Sub title ## or
	  Sub title
	  ---------

Sub title

### Sub sub title ###

Sub sub title

{% endblock %}