Hexo 中文顯示 and Markdown 測試

除了將Hexo的_config.yml 設定成 language: zh-tw 之外
文章如果用UltraEdit編輯的話的話, 要使用轉換編碼, 將ASCII轉UTF-8(Unicode編輯), 中文才能正常顯示

引言測試
同一個區塊的引言

內容文字, 強調

引言測試二
同一個引言測試二的區塊

  • 無序清單, item1
    仍然是item1的內容
  • item2
  • item3
  1. 有序item1
  2. item2
    仍然是item2的內容
  3. item3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
bool text(const string inPath, const string outPath)
{
ifstream ifs(inPath.c_str());
if (!ifs)
return false;
ofstream ofs(outPath.c_str());
if (!ofs)
return false;
string line;
while (getline(ifs,line))
{
istringstream iss(line);
string token;
while (iss>>token)
{
cout << "<Token>: " << token << endl;
ofs << "<Token>: " << token << endl;
}
}
ofs.close();
ifs.close();
return true;
}
  1. 新的item?

Here is an example of AppleScript:

tell application "Foo"
    beep
end tell

Normal paragrah

以下為分隔線


上線使用三個*中間有空格


上線使用三個*中間無空格


上線使用5個*中間有空格


上線使用三個-中間有空格

數學公式測試

$$x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}$$
\(x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}\

方法:
在文章要有 <script type=”text/javascript” src=”http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=default“ >
</script> 這行指令
然後安装插件 Hexo-math, 安装方法如下, 依次为

1
$ npm install hexo-math --save

在 Hexo 文件夹中执行:

1
$ hexo math install

在 _config.yml 文件中添加:

1
plugins: hexo-math