Markdown
scope42 supports formatting text with Markdown in most places.
Basics
For the basic syntax, refer to the CommonMark documentation.
It is extended by support for GFM (GitHub Flavored Markdown). This enables auto-detection of links, footnotes, strikethrough, tables and tasklists. Example:
# GFM
## Autolink literals
www.example.com, https://example.com, and contact@example.com.
## Footnote
A note[^1]
[^1]: Big note.
## Strikethrough
~one~ or ~~two~~ tildes.
## Table
| a | b | c | d |
| - | :- | -: | :-: |
## Tasklist
* [ ] to do
* [x] done
Item Links
There is a custom directive for linking to scope42 item. For example, if you want to reference issue-42
:
In order to resolve :link{#issue-42}, we need to...
Mermaid Diagrams
You can directly embed different types of diagrams using Mermaid. To do this, simply create a code block with mermaid
as language:
```mermaid
flowchart LR
Start --> Stop
```
For comprehensive guides on the diagram syntax, please refer to the Mermaid documentation.