Wendy
文章17
标签13
分类6
文章演示页面

文章演示页面

显示在首页的内容

一级标题

二级标题

三级标题

四级标题

瀑布流图片

相片集

珠江 珠江 某收门票公园
某收门票公园 某收门票公园 珠海

字符效果和横线等


删除线
斜体字 斜体字
粗体 粗体
粗斜体 粗斜体

上标:X2,下标:O2

缩写(同HTML的abbr标签)

即更长的单词或短语的缩写形式,前提是开启识别HTML标签时,已默认开启

The HTML specification is maintained by the W3C.

引用 Blockquotes

引用文本 Blockquotes

普通链接

普通链接带描述

直接链接:https://github.com

多语言代码高亮 Codes

行内代码 Inline code

执行命令:npm install marked

JS代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
function test(){
console.log("Hello world!");
}

(function(){
var box = function(){
return box.fn.init();
};

box.prototype = box.fn = {
init : function(){
console.log('box.init()');

return this;
},

add : function(str){
alert("add", str);

return this;
},

remove : function(str){
alert("remove", str);

return this;
}
};

box.fn.init.prototype = box.fn;

window.box =box;
})();

var testBox = box();
testBox.add("jQuery").remove("jQuery");

HTML代码 HTML codes

1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<mate charest="utf-8" />
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>

图片 Images

赞助我

图片加链接 (Image + Link):


列表 Lists

无序列表

  • 列表一
  • 列表二
    • 列表二-1
    • 列表二-2
    • 列表二-3
  • 列表三
    • 列表一
    • 列表二
    • 列表三

有序列表

  1. 第一行
  2. 第二行
  3. 第三行

GFM task list

  • GFM task list 1
  • GFM task list 2
  • GFM task list 3
    • GFM task list 3-1
    • GFM task list 3-2
    • GFM task list 3-3
  • GFM task list 4
    • GFM task list 4-1
    • GFM task list 4-2

绘制表格 Tables

项目 价格 数量
计算机 $1600 5
手机 $12 12
管线 $1 234

本文作者:Wendy
本文链接:https://wendy-ljw.github.io/2021/07/25/post-example/
版权声明:本文采用 CC BY-NC-SA 3.0 CN 协议进行许可
×