hexo-tips

hexo config tips

custom files

  • \scaffolds\post.md 等,配置了创建post的Front-matter信息

    1
    2
    3
    4
    5
    ---
    title: {{ title }}
    date: {{ date }}
    tags:
    ---end up with these dashes
  • _config.yml总配置信息

Categories & Tags

  • Only posts support the use of categories and tags. Categories apply to posts in order,
    resulting in a hierarchy of classifications and sub-classifications. Tags are all defined on the same hierarchical
    level so the order in which they appear is not important.
    1
    2
    3
    4
    5
    6
    7
    categories:
    - Sports
    - Baseball
    tags:
    - Injury
    - Fight
    - Shocking

备份

  • 原文备份 在hexo目录下执行git push

tag Plugins

前提是post_asset_folder: true

Include post assets.

1
2
3
{% asset_path slug %}
{% asset_img slug [title] %}
{% asset_link slug [title] %}

Inserts a YouTube video.

1
{% youtube video_id %}

嵌入音乐

1
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="https://music.163.com/outchain/player?type=2&id=28577823&auto=0&height=66"></iframe>

参考