Skip to main content

Markdown Guide

Emphasis

Use Markdown to emphasize text:

**bold**
*italics*
~~strikethrough~~

Additional emphasis examples:

  • Italic using underscores: _italic_
  • Strikethrough with four tildes: ~~~~strikethrough~~~~

Headers

Examples of header levels:

# Big header
## Medium header
### Small header
#### Tiny header

Lists

Unordered list:

* Generic list item
* Generic list item
* Generic list item

Ordered list:

1. Numbered list item
2. Numbered list item
3. Numbered list item

Inline link example:

[Text to display](http://www.example.com)

Quotes

Block quote example:

> This is a quote.
> It can span multiple lines!

Images

Need to upload an image? TagoIO Files has a great interface.

Example Markdown for an image:

![Alt text](path/to/image.jpg)

Rendered example image placeholder:

Tables

Basic Markdown table example:

| Syntax    | Description |
|-----------|-------------|
| Header | Title |
| Paragraph | Text |

Additional tables from the legacy guide:

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |

Or without aligning the columns...

| Column 1 | Column 2 | Column 3 |
| -------- | -------- | -------- |
| John | Doe | Male |
| Mary | Smith | Female |

Displaying code

Inline code example:

Use backticks for inline code: var x = 1;

Fenced code block example (JavaScript):

function greet() {
console.log("Hello, world!");
}

Additional code examples from the legacy guide:

Inline code:

`var example = "hello!";`

Spanning multiple lines:

var example = "hello!";
alert(example);

References:

  • See the TagoIO Files interface for uploading images: TagoIO Files