Detailed guides from basic operations to advanced features.
You can create team knowledge notes in Repsona (Markdown-compatible) to organize and share information. This article explains how to write Markdown.
| Who can use it | Available on |
|---|---|
| All | All |
Markdown is a simple text-based markup language that lets you write using plain text while easily adding formatting such as bold, italics, and headings.
Because it’s just plain text, you can start writing immediately—no complex formatting or software required. It lets you focus on the essence of “writing,” without getting distracted by adjusting layouts or figuring out how an app works.
In fact, this help site itself is written in Markdown.
Use # for the heading. Increasing the number of # will result in a deeper hierarchy of headings.
# Heading h1
## Heading h2
### Heading h3
#### Heading h4
##### Heading h5
###### Heading h6
Enclose it in ** to make it bold.
** Emphasis (bold) **
Enclose it in * to make it italic.
*Emphasis (italic)*
If you enclose it in ~~, it will be a strikethrough.
~~strikethrough~~
Links can be written as [link string] (URL).
[Repsona website](https://repsona.com)
Use - for the list. You can start a new line and make a list continuously. You can move down the hierarchy with tabs.
- List
- List
- List
Use 1. for numbered lists. You can start a new line and make a list continuously. You can move down the hierarchy with tabs.
1. List
1. List
1. List
Use [ ] for the checklist. To check it, use [x].
[ ] Checklist
[x] Checklist
Write the table by enclosing it like a table using | or -.
| Left align | Right align | Center align |
|:-----------------|------------------:|:------------------:|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
| Left align | Right align | Center align |
|---|---|---|
| This | This | This |
| column | column | column |
| will | will | will |
| be | be | be |
| left | right | center |
| aligned | aligned | aligned |
Use > for citations.
> Quote
>> Quote
Quote
Quote
Enclose the code in ```. It also supports code syntax.
```js
console.log('code with syntax')
```
console.log('code with syntax')