ToDo - Help

Markdown syntax

Markdown is the default you can use it in the most fields.

Headings

Syntax

# Heading 1
## Heading 2
### Heading 3

Result

Heading 1

Heading 2

<h3<Heading 3

Footnotes

Syntax

This is a text[^first] containing some footnotes[^second].

[^first]: Footnote **can have markup**

    and multiple paragraphs.

[^second]: Footnote text.

Result

This is a text1 containing some footnotes2.

Table of Content

Syntax

[TOC]

Result

Lists

Syntax

An Unordered List:

* Primary item element
* Secondary item element
  * Indented sub-bullet (Created using a Tab or 4 spaces)
  * Second indented sub-bullet

An Ordered List:

1. Initialize the Django local server environment.
2. Run your dedicated python dependency download script.
3. Refresh your user web browser viewport.

Result

An Unordered List:

An Ordered List:

  1. Initialize the Django local server environment.
  2. Run your dedicated python dependency download script.
  3. Refresh your user web browser viewport.

Textformatting

Syntax

* This text shows **bold typography** written with double asterisks.
* This text shows *italic typography* written with single asterisks.
* This text shows ***combined bold & italic emphasis*** using triple asterisks.
* This text shows ~~strikethrough text formatting~~ using double tildes.
* This text shows an `inline_variable` or `function_call()` using single backticks.

Line
and no new line

Line.

New line.

Result

Line and no new line

Line.

New line.

Links and pictures

In all examples, you can use attachments:filename.ext as url to use internal files. You are able to upload a file, if it does not exist.

Syntax

* Text link: [Python](https://www.python.org)
* Raw link: https://www.python.org
* Image link: [logo](/media/theme/logo.png)
* Image: ![logo](/media/theme/logo.png)

Result

Blockquotes

Syntax

> **Important System Notice:** This is an isolated blockquote text block.
>> It breaks away from standard paragraph margins to focus user attention instantly.

Result

Important System Notice: This is an isolated blockquote text block.

It breaks away from standard paragraph margins to focus user attention instantly.

Code blocks

Syntax

` ` `python
def article_detail(request):
    '''Processes and safe-renders raw markdown into template contexts.'''
    html_content = markdown.markdown(raw_text, extensions=['extra', 'codehilite'])
    return render(request, 'article.html', {'content': html_content})
` ` `

Result

def article_detail(request):
    '''Processes and safe-renders raw markdown into template contexts.'''
    html_content = markdown.markdown(raw_text, extensions=['extra', 'codehilite'])
    return render(request, 'article.html', {'content': html_content})

Tables

Syntax

| Component Target | Activation Flag | Rendering Engine | CSS Responsive Layer |
| :--- | :---: | :---: | ---: |
| Base Typography Core | Enabled | Markdown Native Standard | 100% Native Integration |
| Extended Data Tables | Enabled | Python Markdown Extra Pack | Inherited Layout Matrix |
| Structural Highlight | Enabled | Pygments Processing Engine | Explicit Theme Stylesheet |
| Local Emoji Packs | Enabled | Pymdownx Asset Mod Core | Explicit Dimensions Block |

Result

Component Target Activation Flag Rendering Engine CSS Responsive Layer
Base Typography Core Enabled Markdown Native Standard 100% Native Integration
Extended Data Tables Enabled Python Markdown Extra Pack Inherited Layout Matrix
Structural Highlight Enabled Pygments Processing Engine Explicit Theme Stylesheet
Local Emoji Packs Enabled Pymdownx Asset Mod Core Explicit Dimensions Block

Emojies

Code Result Code Result Code Result Code Result
:book: 📖 :boom: 💥 :calendar: 📆 :clap: 👏
:coffee: ☕ :computer: 💻 :cry: 😢 :dart: 🎯
:eyes: 👀 :fire: 🔥 :gear: ⚙ :hammer: 🔨
:heart_eyes: 😍 :joy: 😂 :laughing: 😆 :light_bulb: 💡
:link: 🔗 :lock: 🔒 :memo: 📝 :moneybag: 💰
:partying_face: 🥳 :question: ❓ :raised_hands: 🙌 :rocket: 🚀
:shrug: 🤷 :smile: 😄 :sparkles: ✨ :star: ⭐
:tada: 🎉 :thinking: 🤔 :thumbsdown: 👎 :thumbsup: 👍
:unlock: 🔓 :warning: ⚠ :wave: 👋 :white_check_mark: ✅
:wink: 😉 :x: ❌ :yum: 😋

PaTT Markup

{{task=number}} will result in a Link to the given tasknumber.


  1. Footnote can have markup

    and multiple paragraphs. 

  2. Footnote text.