We will explain in detail from basic operations to advanced functions!
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 feature | Plans that can use this function |
---|---|
All | All |
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.
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')