Short Idea Memo - Markdown Quick Reference


Button icon Contents Expression Example Display example
Description

w
Text color <red>Red color</red>
<#0000FF>Blue color</#0000FF>
Red color
Blue color
To add color to text, enter the name of the color (HTML color) in the HTML style tag. When run from the toolbar, a color selection dialog will appear. This expression will not be shown correctly in other Markdown editors.
d
Header ### header

header

If you put "#" at the beginning of a line, the line will be treated as a heading. You can use up to six #'s (six is the minimum).
d
Header header
------

header

다음 줄에서 '-' 또는 '=' 로 밑줄을 긋면 헤더로 처리됩니다.
a
Bold **bold** bold
Characters surrounded by two asterisks (*) will be bold.
j
Italic *italic* italic
Characters surrounded by a single asterisk (*) characters will be italicized.
q
Underline ~underline~ underline
Characters surrounded by a single tilde (~) will be underlined. This expression will not be shown correctly in other Markdown editors.
o
Underline ~~strikeout~~ strikeout
Characters surrounded by two tildes (~) will be struck through.
D
Inline code `inline` inline
Characters surrounded by "`" will be painted to background.
n
Horizontal line ---
If you type three consecutive asterisks (*), underlines (_), or hyphens (-), a dividing line will be drawn between the sentences. In this case, paragraphs will always be added.
m
Quote > quote | quote
If you add ">" to the beginning of a line, the line will be treated as a quotation; two or more characters will be considered as nesting of quotations, but you will not be able to go up halfway through the quotation stage.
c
Code ```
code
```
code
If you enclose a sentence with "```'', the enclosed characters will be displayed as independent sentences, surrounded by a frame.
k
Ordered list 1. item
  1. item
If you add "1. " to the beginning of a line, subsequent lines will be treated as a numbered list. Inserting an additional space at the beginning of a line will cause that list to be nested.
l
Unordered list - item
  • item
If you add a "- " at the beginning of a line, subsequent lines will be treated as a list with symbols. If you insert more spaces at the beginning of a line, the list will be nested.
b
Check list - [x] item1 item
Adding "- [ ]" at the beginning of a line will display an unchecked box, and adding "- [x]" will display a checked box. This expression will not be shown correctly in some Markdown editors.
p
Table
| A | B | C |
| ---- | ---- | ---- |
| data | data | data |
ABC
datadatadata
Separate the characters with "|" to treat it as a table. The first line is the header, and the second line declares the position of the cell. If the declaration is "---" or ":---", the cell is left-justified; if it is "---:", the cell is left-justified; if it is ":---:", the cell is centered.

If you select a comma-separated string in the editor and press the button on the toolbar, it will be converted into a table in Markdown format.

a,b,c
d,e,f
|a|b|c|
|---|---|---|
|d|e|f|

Due to the limitations of Android widgets, the table is drawn as an image, so if the width is increased, the entire table will be displayed in a reduced size. Please note that if you create a table that is too large, the text will become very difficult to read.

This expression will not be shown correctly in some Markdown editors.

Back to the top