Hexo Blogging Cheatsheet

Hexo Blogging Cheatsheet

My blog’s information

Design

Frequently used Emoji

😄 :smile:😊 :blush:😍 :heart_eyes:
😓 :sweat:👍 :thumbsup:😋 :yum:
😰 :cold_sweat:😱 :scream:😭 :sob:
😜 :stuck_out_tongue_winking_eye:😗 :kissing:😪 :sleepy:
💩 :poop:✌️ :v:💯 :100:
🙈 :see_no_evil:🙉 :hear_no_evil:🙊 :speak_no_evil:
💋 :kiss:💀 :skull:💧 :droplet:
🎆 :fireworks:📢 :loudspeaker:⚠️ :warning:
🚫 :no_entry_sign::white_check_mark::x:
㊙️ :secret:⁉️ :interrobang:‼️ :bangbang:

and more from Emoji Cheatsheet

CSS

Keys

  • Control <kbd>Contro</kbd>
  • Shift ⇧ <kbd>Shift &#x21E7;</kbd> - use Unicode characters

Markdown (with Markdown plus)

  • ++Inserted++ ++Inserted++ (disabled)
  • Footnote [^1] for the mark, [^1]: for the note
  • Use {% raw %}{% endraw %} if the markdown cause you trouble on {{}} or {%%}
  • Youtube Video {% youtube [youtube id] %}
ActionMarkdownSample
subH~2~0H20
supx^2^x2
Bold**bold**bold
Italic*italic*italic
Bold and Italic***bold and italic***bold and italic
Strikethrough~~strikethrough~~strikethrough
Inline code`inline code`inline code
Link[link text](https://example.com)link text
Image![alt text](https://example.com/image.jpg)alt text

Table Column Alignment

Code:

1
2
3
4
5
| Default | Left | Center | Right |
| --- | :-- | :-: | --: |
| 1 | 1 | 1 | 1 |
| 22 | 22 | 22 | 22 |
| 333 | 333 | 333 | 333 |

Result:

DefaultLeftCenterRight
1111
22222222
333333333333

Blockquote

Code:

1
> Some quote text

Result:

Some quote text

Ordered list

Code:

1
2
1. item 1
2. item 2

Result:

  1. item 1
  2. item 2

Unordered list

Code:

1
2
- item 1
- item 2

Result:

  • item 1
  • item 2

Horizontal rule

Code:
---

Result:


Code block

Result:

1
Code block 

Code:

1
2
3
~~~
Code block
~~~

Github Card

Code:

1
{% githubCard user:neoalienson repo:pachinko %}

Result:

Mermaid Flowchart

Code:

1
2
3
4
5
6
7
8
{% mermaid %}
flowchart TD
A[Christmas] -->|Get money| B(Go shopping)
B --> C{Let me think}
C -->|One| D[Laptop]
C -->|Two| E[iPhone]
C -->|Three| F[fa:fa-car Car]
{% endmermaid %}

Result:

Get money
One
Two
Three
Christmas
Go shopping
Let me think
Laptop
iPhone
Car

Barchart

Barchart from easy charts

Result:

Code:

1
2
3
4
{% barchart 'Sample Chart' %}
Apple | Orange | Banana | Lemon
50 | 740 | 218 | 193
{% endbarchart %}
Share