How to use

We will explain in detail from basic operations to advanced functions!

How to write Markdown

With Repsona, you can create "notes (Markdown compatible)" of know-how and knowledge within the team, and organize and share information. This is an explanation of how to write Markdown.

Who can use this featurePlans that can use this function
AllAll

What is Markdown?

Markdown is a "notation for writing sentences" that allows you to easily write in text, decorate characters such as bold and italics, and structure documents with headings.

It's just text (plain text), so you can easily start writing as if you were leaving a note without any decoration or structuring. You can concentrate on the original work of "writing" without "I don't know how to use the app and it takes time to adjust paragraphs and positions".

In fact, this help site is also created with Markdown.

Features of Markdown

  • Everyone can write easily
  • Read as it is
  • You can decorate and structure beautifully with a little ingenuity.
  • Used in various services
  • Since it is text, the difference is easy to understand

How to write Markdown

Heading

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

Heading h1

Heading h2

Heading h3

Heading h4

Heading h5
Heading h6

Bold

Enclose it in ** to make it bold.

** Emphasis (bold) **
Emphasis (bold)

Italic

Enclose it in * to make it italic.

*Emphasis (italic)*
Emphasis (italic)

Strikethrough

If you enclose it in ~~, it will be a strikethrough.

~~strikethrough~~
strikethrough

Links can be written as [link string] (URL).

[Repsona website](https://repsona.com)
Repsona website

List

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
  • List
  • List
    • List

Numbered 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
  1. List
  2. List
    1. List

Checklist

Use [ ] for the checklist. To check it, use [x].

 [ ] Checklist
 [x] Checklist
Checklist
Checklist

Table

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 alignRight alignCenter align
ThisThisThis
columncolumncolumn
willwillwill
bebebe
leftrightcenter
alignedalignedaligned

Quote

Use > for citations.

> Quote
>> Quote

Quote

Quote

Code

Enclose the code in ```. It also supports code syntax.

```js
console.log('code with syntax')
```
console.log('code with syntax')
Was this page helpful?
Please help us improve
RepsonaHQ/repsona-content-help