RSS
首先,安装 hexo-migrator-rss
插件。
$ npm install hexo-migrator-rss --save |
插件安装完成后,执行下列命令,从 RSS 迁移所有文章。 source
可以是文件路径或网址。
$ hexo migrate rss <source> |
Jekyll
把 _posts
文件夹内的所有文件复制到 source/_posts
文件夹,并在 _config.yml
中修改 new_post_name
参数。
把 Octopress source/_posts
文件夹内的所有文件转移到 Hexo 的 source/_posts
文件夹,并修改 _config.yml
中的 new_post_name
参数。
new_post_name: :year-:month-:day-:title.md |
Octopress
将 Octopress source/_posts
文件夹中的所有文件移到 source/_posts
文件夹中
修改_config.yml
中的new_post_name
设置:
new_post_name: :year-:month-:day-:title.md |
WordPress
首先,安装 hexo-migrator-wordpress
插件。
$ npm install hexo-migrator-wordpress --save |
在 WordPress 仪表盘中导出数据(“Tools” → “Export” → “WordPress”)(详情参考WP支持页面)。
运行:
$ hexo migrate wordpress <source> |
source
可以是 WordPress 导出的文件路径或网址。
Joomla
首先,安装 hexo-migrator-joomla
插件。
$ npm install hexo-migrator-joomla --save |
使用 J2XML 组件导出 Joomla 文章。
运行:
$ hexo migrate joomla <source> |
source
可以是 Joomla 导出的文件路径或网址。