Jekyll Theme Test
A file to test Jekyll theme.
Unicodes
:
Ciallo~(∠・ω< )⌒★
italic
bold
score out
Blockquote
‘All the world’s a stage, and all the men and women merely players. They have their exits and their entrances; And one man in his time plays many parts.’
From As You Like It, Act 2, Scene 7, by Shakespeare
h1
h2
h3
head | column |
---|---|
1 | 2 |
Picture:
- 1
- 2
- 3
- 3-1
- 3-2
- 3-3
- 3-3-1
- 3-3-2
- 3-3-3
Code blocks
Theme: Gruvbox Dark
Highlighter: Rouge
Font: Caskaydia Cove (supports nerd font)
var str = "114514";
console.log(str);
More comprehensive C++ code preview:
#include <iostream>
#include <map>
using namespace std;
void printMap(map<char, int> m){ // cout map
for (map<char, int>::iterator it = m.begin(); it != m.end(); it++)
cout << it -> first << ": " << it -> second << endl;
}
int main(){ // A program that counts English characters in a sentence
string input;
map<char, int> cnt;
cin >> input;
for (char c : input){
if (!(c >= 33 && c <= 126)) continue; // if c is a visible character
cnt[c]++;
}
printMap(cnt);
return 0;
}
Does not support latex
$f(x) = \frac{2x}{5} + x^3$
Animations
AOS Supported