All Collections
Tips & Tricks
TIPS & TRICKS: Markdown
TIPS & TRICKS: Markdown
Oliver Zdravkovski avatar
Written by Oliver Zdravkovski
Updated over a week ago

In this help doc


Using Markdown

Markdown is a user-friendly way of formatting a text on web pages. In MetaPulse most multi-line input fields accept markdown. If unsure, give it a try!

  1. Click Team Chart

  2. Click on the 3-dot menu on the specific Team

  3. Click on Edit Team

  4. In our example, we added ** before and after "completed" to make it bold.

  5. Click Update

  6. It displays the word in bold

This is just one example of using Markdown to format the information on the Team Chart. You can find more options in Markdown Syntax.


Markdown Syntax

Type

… to Get

*Italic*

Italic

**Bold**

Bold

# Heading 1

Heading 1

## Heading 2

Heading 2

[Link](http://a.com)

![Image](http://url/a.png)

> Blockquote

Blockquote

* List
* List
* List

  • List

  • List

  • List

1. One
2. Two
3. Three

  1. One

  2. Two

  3. Three

Horizontal rule:

---

Horizontal rule:


`Inline code` with backticks

Inline code with backticks

```
code block
print '3 backticks or'
print 'indent 4 spaces'
```

code block
print '3 backticks or'
print 'indent 4 spaces'

There are many more formatting options available. For more info, see the Markdown Cheat Sheet.


Did this answer your question?