Markdown Cheatsheet#

Various text fields in DSW can be formatted by using Markdown formatting language. Here you can get a basic overview of what can be achieved with Markdown.

Basic Syntax#

These are the basic Markdown elements supported by all applications.

Formatting Markdown Syntax

Heading 1

# Heading 1

Heading 2

# Heading 2

Heading 3

# Heading 3

Heading 4

# Heading 4
Heading 5
# Heading 5
Heading 6
# Heading 6
Bold text **Bold text**
Italic text *Italic text*
Blockquote
> Blockquote
  1. First item
  2. Second item
  3. Third item
1. First item
2. Second item
3. Third item
  • First item
  • Second item
  • Third item
- First item
- Second item
- Third item
Code `Code`

---
DS Wizard [DS Wizard](https://ds-wizard.org)
![](https://ds-wizard.org/static/dsw-logo-horizontal-color-transparent.svg)

Extended Syntax#

These elements extending the basic syntax are supported in DSW.

Formatting Markdown Syntax
NameValue
Dataset 1123
Dataset 2211
| Name | Value |
| --- | --- |
| Dataset 1 | 123 |
| Dataset 2 | 211 |
Codeblock
```
Codeblock
```
Strikethrough ~~Strikethrough~~
  • Task 1
  • Task 2
- [x] Task 1
- [ ] Task 2