Writing Articles
- Use
hexo new __ARTICLE_NAME__to let Hexo automatically create a new__ARTICLE_NAME__.mdfile in_postsfolder for you. - Edit the
__ARTICLE_NAME__.mddirectly, and runhexo serverto see the resulting webpage directly.- Use
<!-- more -->in the post to control excerpt accurately
- Use
P.S. (Unrelated to the usage) Equation vs Formula: A formula is a special type of equation that shows the relationship between different variables
Writing Drafts
- Use
hexo new draft __ARTICLE_NAME__to let Hexo automatically create a new__ARTICLE_NAME__.mdfile in_draftsfolder for you. - Edit the
__ARTICLE_NAME__.mddirectly, and runhexo server --draftto see the resulting webpage directly. - Use
hexo publish draft __ARTICLE_NAME__to publish the draft.