Skip to content
English - United States
  • There are no suggestions because the search field is empty.

Markdown Guide

This article summarizes the basic Markdown syntax supported in TagoIO, including emphasis, headers, lists, links, quotes, images, tables, and how to display code examples.

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

Links

Inline link example:

Text to display

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

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