Skip to content

Markdown User Guide

ycagel edited this page Aug 8, 2024 · 2 revisions
Title Markdown User Guide
Description
Published true
Date 2023-10-22T09:22:44.192Z
Tags
Editor markdown
DateCreated 2023-10-22T09:21:48.118Z

Overview

Markdown is a lightweight markup language with plain text formatting syntax. It's the de-facto syntax for writing documentation on major code repositories such as GitHub.

Wiki.js supports the full CommonMark specification + adds some useful extensions (including the Github Flavored Markdown addons).

User Guide

Blockquotes

Tab {.tabset}

Usage

Using a greater-than symbol, followed by a space, before each line of text.

Shortcuts

  • By selecting text, then clicking the ![Blockquote](/assets/ui/ui-markdown-blockquotes.png =x30){.radius-4} button in the toolbar.

Examples

> Lorem ipsum dolor sit amet
> Consectetur adipiscing elit

Lorem ipsum dolor sit amet Consectetur adipiscing elit

Stylings

By adding a class on a separate line, after the blockquote, you can change the look of the blockquote. Note that these stylings are specific to Wiki.js and will fallback to standard blockquote styling in other applications.

  • Blue: is-info
  • Green: is-success
  • Yellow: is-warning
  • Red: is-danger
> Lorem ipsum dolor sit amet
> Consectetur adipiscing elit
{.is-info}

This is a default unstyled blockquote.

This is a {.is-info} blockquote. {.is-info}

This is a {.is-success} blockquote. {.is-success}

This is a {.is-warning} blockquote. {.is-warning}

This is a {.is-danger} blockquote. {.is-danger}

Bold

Tab {.tabset}

Usage

Using double asterisks symbols before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Bold](/assets/ui/ui-markdown-bold.png =x30){.radius-4} button in the toolbar.
  • By selecting text, then pressing CTRL + B

Examples

Lorem **ipsum** dolor

Lorem ipsum dolor

Code Blocks

Tab {.tabset}

Usage

Using triple backticks symbols before and after the text selection, on dedicated lines.

Shortcuts

  • Using the Code Block tool in the left toolbar.

Examples

```
function lorem (ipsum) {
	const dolor = 'consectetur adipiscing elit'
}
```

Syntax Highlighting

By default, a code block is rendered as plain preformatted text. It's however preferable to use syntax highlighting for programming code, allowing for easier readability. To specify the programming language used in the code block, simply add the language keyword right after the opening triple backticks:

```java
// some code here
```

Refer to the reference list of about 185 supported programming languages.

Content Tabs

Tab {.tabset}

Usage

This feature is only available from version 2.4 and up. {.is-info}

Using headers and adding the {.tabset} class to the parent header. The parent header text will not be shown in the final result.

Note that you can use any header level, as long as the children headers are one level higher. For example, if a parent header is ### (h3), the tabs headers must be #### (h4). The maximum header level for a parent being 5 and the children 6.

Examples

# Tabs {.tabset}
## First Tab

Any content here will go into the first tab...

## Second Tab

Any content here will go into the second tab...

## Third Tab

Any content here will go into the third tab...

Emojis

Tab {.tabset}

Usage

Using the syntax :identifier:

See the Emoji Cheat Sheet for the full list of possible options.

Examples

:apple:

Can be also be used :fire: inline

🍎

Can also be used 🔥 inline.

Footnotes

Tab {.tabset}

Usage

Use the syntax [^1] for the location of the footnote in the main text, and [^1]: this is a footnote for the actual footnote. Footnotes themselves will automatically appear at the bottom of the page under a horizontal line.

Examples

This sentence[^1] needs a few footnotes.[^2]

[^1]: A string of syntactic words.
[^2]: A useful example sentence.

This sentence[^1] needs a few footnotes.[^2]

[^1]: A string of syntactic words. [^2]: A useful example sentence.

Headers

Tab {.tabset}

Usage

Using between 1 and 6 hashtag symbol(s), followed by a space, before the text selection.

Shortcuts

  • On the desired line, then clicking the ![Header](/assets/ui/ui-markdown-headers.png =x30){.radius-4} dropdown button in the toolbar.
  • On the desired line, press CTRL + ALT + Right to increase the header level.
  • On the desired line, press CTRL + ALT + Left to decrease the header level.

Examples

# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Horizontal Line

Tab {.tabset}

Usage

Using triple dash symbols on a dedicated line.

Shortcuts

  • By clicking the ![Horizontal Rule](/assets/ui/ui-markdown-hr.png =x30){.radius-4} button in the toolbar.

Examples

Lorem ipsum dolor

---

Consectetur adipiscing elit

Lorem ipsum dolor


Consectetur adipiscing elit

Images

Tab {.tabset}

Usage

Using the syntax ![Image alt text](Image source "Image title").

Image alt text - text that is displayed when the image could not be loaded Image source - file path of image Image title - is displayed when the user hovers over the picture

Shortcuts

  • Using the Assets tool in the left toolbar.

Examples

![Lorem ipsum](https://dolor.example.com/sit/amet.jpg "Lorem ipsum")

Consectetur ![adipiscing](/link/to/image.jpg) elit

Dimensions

Sometimes images are too large or maybe you want the image to fill up all the available space.

Simply at the dimensions at the end of the image path in the following format:

![Image](/link/to/image.jpg =100x50)

You can also omit one of the values to automatically keep the image ratio:

![Image](/link/to/image.jpg =100x)
![Image](/link/to/image.jpg =x50)

It's also possible to use other units, like %. Useful when you need the image to take all the available space:

![Image](/link/to/image.jpg =100%x)

Inline Code

Tab {.tabset}

Usage

Using a backtick symbol before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Inline Code](/assets/ui/ui-markdown-inlinecode.png =x30){.radius-4} button in the toolbar.

Examples

Lorem `ipsum` dolor

Lorem ipsum dolor

Italic

Tab {.tabset}

Usage

Using a single asterisk symbol before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Italic](/assets/ui/ui-markdown-italic.png =x30){.radius-4} button in the toolbar.
  • By selecting text, then pressing CTRL + I

Examples

Lorem *ipsum* dolor

Lorem ipsum dolor

Keyboard Keys

Tab {.tabset}

Usage

Using <kbd> before and </kbd> after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Keyboard Keys](/assets/ui/ui-markdown-kbd.png =x30){.radius-4} button in the toolbar.

Examples

Lorem ipsum dolor <kbd>CTRL</kbd> + <kbd>C</kbd>

Lorem ipsum dolor CTRL + C

Links

Tab {.tabset}

Usage

Using the syntax [Link Text](Link Target).

Shortcuts

  • Using the Link tool in the left toolbar.

Examples

[Lorem ipsum](https://wiki.js.org/about)

Consectetur [adipiscing](/install/requirements) elit

Lorem ipsum

Consectetur adipiscing elit

Mermaid Diagrams

Tab {.tabset}

Usage

Using a code block with the language mermaid.

Refer to Mermaid website for the language reference.

Examples

```mermaid
sequenceDiagram
    Alice ->> Bob: Hello Bob, how are you?
    Bob-->>John: How about you John?
    Bob--x Alice: I am good thanks!
    Bob-x John: I am good thanks!
    Note right of John: Bob thinks a long<br/>long time, so long<br/>that the text does<br/>not fit on a row.

    Bob-->Alice: Checking with John...
    Alice->John: Yes... John, how are you?
```

Ordered Lists

Tab {.tabset}

Usage

Using an number, followed by a dot symbol, followed by a space, before each line of text.

Shortcuts

  • By selecting text, then clicking the ![Ordered List](/assets/ui/ui-markdown-ol.png =x30){.radius-4} button in the toolbar.

Examples

1. Lorem ipsum dolor sit amet
1. Consectetur adipiscing elit
1. Morbi vehicula aliquam
  1. Lorem ipsum dolor sit amet
  2. Consectetur adipiscing elit
  3. Morbi vehicula aliquam

While you can number each line numerically in order, it's easier to use the number 1 on each line. The final result will be incremented automatically. This way you don't need to re-number every single line when adding or removing a line later on. {.is-info}

PlantUML Diagrams

Tab {.tabset}

Usage

Using a code block with the language plantuml.

Refer to PlantUML website for the language reference.

Examples

```plantuml
Bob->Alice : hello
```
Bob->Alice : hello

Strikethrough

Tab {.tabset}

Usage

Using double tildes symbols before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Strikethrough](/assets/ui/ui-markdown-strike.png =x30){.radius-4} button in the toolbar.

Examples

Lorem ~~ipsum~~ dolor

Lorem ipsum dolor

Subscript

Tab {.tabset}

Usage

Using a single tilde symbol before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Subscript](/assets/ui/ui-markdown-sub.png =x30){.radius-4} button in the toolbar.

Examples

Lorem ~ipsum~ dolor

Lorem ipsum dolor

Superscript

Tab {.tabset}

Usage

Using a single caret symbol before and after the text selection.

Shortcuts

  • By selecting text, then clicking the ![Superscript](/assets/ui/ui-markdown-sup.png =x30){.radius-4} button in the toolbar.

Examples

Lorem ^ipsum^ dolor

Lorem ^ipsum^ dolor

Table

Tab {.tabset}

Usage

Using the syntax:

| Header A1 | Header B1 | Header C1 |
|-----------|-----------|-----------|
| Cell A2   | Cell B2   | Cell C2   |
| Cell A3   | Cell B3   | Cell C3   |
...

Examples

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Foo      | Bar      | Xyz      |
| Abc      | Def      | 123      |

will result in:

Header 1 Header 2 Header 3
Foo Bar Xyz
Abc Def 123

Stylings

By adding the class dense on a separate line, after the table, you can make the table use a smaller font and smaller padding. For example:

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Foo      | Bar      | Xyz      |
| Abc      | Def      | 123      |
{.dense}

will result in:

Header 1 Header 2 Header 3
Foo Bar Xyz
Abc Def 123
{.dense}

Task Lists

Tab {.tabset}

Usage

Using the syntax - [ ] or a - [x].

Examples

- [x] Checked task item
- [x] Another checked task item
- [ ] Unchecked task item
  • Checked task item
  • Another checked task item
  • Unchecked task item

Unordered Lists

Tab {.tabset}

Usage

Using an asterisk or a dash symbol, followed by a space, before each line of text.

Shortcuts

  • By selecting text, then clicking the ![Unordered List](/assets/ui/ui-markdown-ul.png =x30){.radius-4} button in the toolbar.

Examples

- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Morbi vehicula aliquam
  • Lorem ipsum dolor sit amet
  • Consectetur adipiscing elit
  • Morbi vehicula aliquam

Stylings

By adding a class on a separate line, after the list, you can change the look of the list:

  • links-list
  • grid-list

For example:

- Grid Item 1
- Grid Item 2
- Grid Item 3
{.grid-list}

- [Lorem ipsum dolor sit amet *Subtitle description here*](https://www.google.com)
- [Consectetur adipiscing elit *Another subtitle description here*](https://www.google.com)
- [Morbi vehicula aliquam *Third subtitle description here*](https://www.google.com)
{.links-list}

will result in:

  • Grid Item 1
  • Grid Item 2
  • Grid Item 3 {.grid-list}

and:

Note that these stylings are specific to Wiki.js and will fallback to standard list styling in other applications. {.is-warning}


Source