Hexo 寫作篇

建立草稿

1
hexo new draft 'new-article'

編輯草稿

用自己慣用的編輯器打開編輯

1
retext source/_drafts/new-article.md

發布草稿

名稱不包含.md

1
hexo publish draft 'new-article'

其他

如何在文章中正確的加入圖片與檔案
正確的引用圖片方式是使用下列的標籤插件而不是 markdown:

1
2
{% asset_img example.jpg This is an example image %}
{% asset_link example.cpp This is an example cpp %}

官網說明 標籤插件