新的开始

之前看到很多个人博客,不仅内容优秀,而且布局精美。所以一直想着自己也搞一个个人博客,奈何因为工作原因和自己比较懒,一直没有下决心去做。好在最近发现了hexo,其简洁性和实用性深深地吸引了我,历经N久的瞎折腾,个人博客终于搭建好了,看着自己的劳动成果,感觉自己花费的时间也没有白费。下定决心,从今天开始,开始写博客。

下面是一些常用的语法:

引用块

在文章中插入引言,可包含作者、来源和标题。

别号: quote

content

[author[source]] [link] [source_link_title]

样例

没有提供参数,则只输出普通的 blockquote

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque hendrerit lacus ut purus iaculis feugiat. Sed nec tempor elit, quis aliquam neque. Curabitur sed diam eget dolor fermentum semper at eu lorem.

引用书上的句子

Do not just seek happiness for yourself. Seek happiness for all. Through kindness. Through mercy.

David LevithanWide Awake

引用 Twitter

NEW: DevDocs now comes with syntax highlighting. http://devdocs.io

引用网络上的文章

Every interaction is both precious and an opportunity to delight.

代码块

在文章中插入代码。
别名: code

[title] [] [url] [link text]
1
code snippet

样例

普通的代码块

1
alert('Hello World!');

指定语言
1
[rectangle setX: 10 y: 10 width: 20 height: 20];

附加说明
Array.map
1
array.map(callback[, thisArg])

附加说明和网址
_.compactUnderscore.js
1
2
_.compact([0, 1, false, 2, '', 3]);
=> [1, 2, 3]

反引号代码块

另一种形式的代码块,不同的是它使用三个反引号来包裹。

[language] [title] [url] [link text] code snippet

Pull Quote

在文章中插入 Pull quote。

content

jsFiddle

在文章中嵌入 jsFiddle。

Gist

在文章中嵌入 Gist。

iframe

在文章中插入 iframe。

Image

在文章中插入指定大小的图片。

Link

在文章中插入链接,并自动给外部链接添加 target=”_blank” 属性。
text url [external] [title]

Include Code

插入 source 文件夹内的代码文件。

Youtube

在文章中插入 Youtube 视频。

Vimeo

在文章中插入 Vimeo 视频。

引用文章

引用其他文章的链接。

引用资源

引用文章的资源。


Raw

如果您想在文章中插入 Swig 标签,可以尝试使用 Raw 标签,以免发生解析异常。
content

Every interaction is both precious and an opportunity to delight.

公式

$$J_\alpha(x)=\sum _{m=0}^\infty \frac{(-1)^ m}{m! \, \Gamma (m + \alpha + 1)}{\left({\frac{x}{2}}\right)}^{2 m + \alpha }$$

字体

我是居中变大的字

比较了一下,感觉Markdown语法和swing语法混合使用体验最好,各取所长吧。

saber

参考链接

hexo文档
Markdown语法

文章目录
  1. 1. 引用块
    1. 1.1. 别号: quote
    2. 1.2. 样例
    3. 1.3. 引用书上的句子
    4. 1.4. 引用 Twitter
    5. 1.5. 引用网络上的文章
  2. 2. 代码块
    1. 2.1. 样例
  3. 3. 反引号代码块
  4. 4. Pull Quote
  5. 5. jsFiddle
  6. 6. Gist
  7. 7. iframe
  8. 8. Image
  9. 9. Link
  10. 10. Include Code
  11. 11. Youtube
  12. 12. Vimeo
  13. 13. 引用文章
  14. 14. 引用资源
  15. 15. Raw
  16. 16. 公式
  17. 17. 字体
    1. 17.0.1. 参考链接
|