logoStatus Screen
  • Getting started
  • Markdown
  • Screen
  • Achievement
  • Alert
  • Item
  • Skill

Markdown

Markdown Guide

Learn how to format your content using standard Markdown syntax.

A quick little guide on using markdown to format your content. Currently only a few featurs are supported from markdown with the rest being added soon.

Text Formatting

You can make text bold or italic using asterisks.

Markdown Input

Markdownformatting.md
**This is bold text***This is italic text****This is bold and italic***
Rendered Output
Loading...

Headings

Use hash marks (#) to create headings. The number of hashes creates the heading level (1-6).

Markdown Input

Markdownheadings.md
# Heading 1## Heading 2### Heading 3#### Heading 4##### Heading 5###### Heading 6
Rendered Output
Loading...

Links

Create links by wrapping the text in brackets [] and the URL in parentheses ().

Markdown Input

Markdownlinks.md
[Google](https://google.com)
Rendered Output
Loading...

Code

Use backticks for inline code and triple backticks for code blocks.

Markdown Input

Markdowncode.md
```jsconsole.log("Hello World");```Here is some `inline code`.
Rendered Output
Loading...