lib.itmens/journal/templates/markdown.html
2024-05-28 10:32:02 -04:00

48 lines
916 B
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load i18n %}
<details>
<summary>{% trans "Markdown format references" %}</summary>
<pre>
{% blocktrans %}
Title
=====
Subtitle
--------
Paragraphs need to be separated by a blank line
Indentation at the beginning of the paragraph requires using a Unicode full-width space
[Link](https://zh.wikipedia.org/wiki/Markdown)
**Bold** *Italic* ==Highlight== ~~Strikethrough~~
^Super^script ~Sub~script [拼(pīn)音(yīn)]
Drag and drop an image ![](https://upload.wikimedia.org/wikipedia/en/8/80/Wikipedia-logo-v2.svg)
> Quote
>> Multi-level quote
Inline >! spoiler warning !< (also in short comments)
>! Multi-line
>! Spoiler
---
- Bullet
- Points
content in paragraph with footnote[^1] markup.
[^1]: footnote explain
```
code
```
Table Header | Second Header
------------- | -------------
Content Cell | Content Cell
Content Cell | Content Cell
{% endblocktrans %}
</pre>
</details>