测试常见markdown语法在这个主题的显示
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
- Red
- Green
- Blue
- Red
- Green
- Blue
- Red
- Green
- Blue
- Green
斜体
加粗删除
Night gathers, and now my watch begins.
It shall not end until my death.
I shall take no wife, hold no lands, father no children.
I shall wear no crowns and win no glory.
I shall live and die at my post.
I am the sword in the darkness.
I am the watcher on the walls.
I am the fire that burns against the cold, the light that brings the dawn, the horn that wakes the sleepers, the shield that guards the realms of men.
I pledge my life and honor to the Night’s Watch, for this night and all the nights to come.
int gcd(int a, int b){ return b ? gcd(b, a % b) : a; }
typedef long long ll;
ll pow_mod(ll x, ll y, ll p){
ll res = 1;
while(y){
if(x & 1) res = res * x % p;
x = x * x % p;
y >>= 1;
}
return res;
}
标题 | 标题 | 标题 |
---|---|---|
居左测试文本 | 居中测试文本 | 居右测试文本 |
居左测试文本1 | 居中测试文本2 | 居右测试文本3 |
居左测试文本11 | 居中测试文本22 | 居右测试文本33 |
居左测试文本111 | 居中测试文本222 | 居右测试文本333 |