§ Markholo
Markholo is a holonomica flavor of Markdown.
§ Emojis
§ Emoji Markup
@@frog@@ @@green-heart@@ @@robit@@ @@robot@@
🐸 💚 🤷❓ 🤖
§ Removed Content <del>
§ Remove Markup
Remove %%removed%% content %%delete%%
Remove removed content delete
§ Added Text <ins>
§ Added Markup
++Addition++ or ++newly inserted++ text.
Addition or newly inserted text.
§ Marked Text <mark>
§ Marked Markup
!!Marked!! or !!highlighted!! text.
Marked or highlighted text.
§ Aside Hints
Inspired by Vuepress hints and Starlight asides
§ Types
| Type | Glyph | Name |
|---|---|---|
Tip |
|
WHITE CIRCLE |
Info |
|
WHITE SQUARE |
Important |
|
BLACK SQUARE |
Warning |
|
WHITE UP-POINTING TRIANGLE |
Danger |
|
BLACK UP-POINTING TRIANGLE |
Misc |
|
DOTTED CIRCLE |
§ Aside Markup
:::tip [title]
content
:::
§ Raw HTML
<aside class="aside hint callout tip">
<header>
<span class="icon">○</span> <em>Tip</em>
</header>
Content...
</aside>
§ Basic
:::tip
This is a tip.
:::
:::info
This is some info.
:::
:::important
This is something important.
:::
:::warning
This is a warning.
:::
:::danger
This is something dangerous.
:::
§ Aside Titles
:::tip [This is a custom title]
Tip.
:::
:::info [This is a custom title]
Info.
:::
:::important [This is a custom title]
Info.
:::
:::warning [This is a custom title]
Warning.
:::
:::danger [This is a custom title]
Info.
:::
:::random [This is a custom title]
Misc.
:::
§ Table (Mesa) <table>
A rough implementaion of mesa extension.
§ Table Markup
| header_01 | header_02 |
|---|---|
cell 01 |
cell 02 |
cell with a, comma ( |
cell with multilines |
,,,
header_01 , :header_02:
cell 01 , cell 02
"cell with a, comma (`,`)" , "cell with
**multilines**"
,,,
§ Basic Table
| 1 | 2 | 3 |
|---|---|---|
one |
two |
three |
uno |
dos |
tres |
ichi |
ni |
san |
,,,
1 , 2 , 3
one , two , three
uno , dos , tres
ichi , ni , san
,,,
| pokemon | type | emoji |
|---|---|---|
pikachu |
electric |
🐭 ⚡️ |
charmander |
fire |
🦎 🔥 |
onyx |
rock |
🐍 🪨 |
,,,
pokemon , type , :emoji:
pikachu , electric , 🐭 ⚡️
charmander , fire , 🦎 🔥
onyx , rock , 🐍 🪨
,,,
§ Alignment
| Left | Center | Right |
|---|---|---|
|
|
|
left, :left |
:center: |
right: |
,,,
:Left , :Center: , Right:
`<<--` , `--|--` , `-->>`
"left, :left" , :center: , right:
,,,
§ Markdown Blocks
| name | blocks |
|---|---|
list |
|
codeblock |
|
headings |
§ Header [^1]
§ Another Header |
,,,
name , blocks
list , "- a
- b
- c"
codeblock , "````odin
hi := ""hello""
````"
headings , "### Header [^1]
> Quote
#### Another Header"
,,,
§ Footnotes
This is a custom implementation of footnotes.
§ Footnote Markup
Referencefootnote
Text[^footnote]
^^^^
[^footnote]: Footnote
§ footnote Example
The first1 footnote.
The second2 footnote.
And a footnote with multiple referencescustom
- the second referencescustom
The first [^1] footnote.
The second[^2] footnote.
And a footnote with multiple references[^custom]
- the second references[^custom]
<!-- The Footnotes MUST be written at the bottom of the document. -->
^^^^
[^1]: First footnote
[^2]: A Second footnote
It's a multiline **footnote**
- [ ] Not finished
- [x] Done
[^custom]: Another footnote with multiple references
§ Description List <dl>
§ Description List Markup
?? Term
= Definition.
= Second definition.
- Term
- Definition.
- Second definition.