We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
本文为博客迁移过来,原文链接: 迁移博客文章到Github issues:2021-7-17
感觉博客文章发在github的话,可以减少维护成本,有天然的评论与账号系统,而且图片与代码也可以很方便的托管,本来写的blog大部分也就是自己的总结和思考,写在哪都是一样的。
所以才有了现在想要迁移到github的想法,但是一个一个迁移就有点太不hack了...基本思路:
创建issues
直接用 glob 对目录下的 '.md' 文件进行扫描,扫描之后用 front-matter 分别对每个文件进行解析,获取文件的标题、分类、时间等信息。 后续也会用到这个工具来解析 tag(label) 等信息。
然后利用 categories 进行过滤,只筛选出 technology 这一类,再对文章时间降序排序,最后人工筛一遍一些不想要搬运的文章。
需要处理的操作包括:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
背景与需求分析
感觉博客文章发在github的话,可以减少维护成本,有天然的评论与账号系统,而且图片与代码也可以很方便的托管,本来写的blog大部分也就是自己的总结和思考,写在哪都是一样的。
所以才有了现在想要迁移到github的想法,但是一个一个迁移就有点太不hack了...基本思路:
创建issues
接口完成创建本地文章目录扫描
直接用 glob 对目录下的 '.md' 文件进行扫描,扫描之后用 front-matter 分别对每个文件进行解析,获取文件的标题、分类、时间等信息。
后续也会用到这个工具来解析 tag(label) 等信息。
然后利用 categories 进行过滤,只筛选出 technology 这一类,再对文章时间降序排序,最后人工筛一遍一些不想要搬运的文章。
markdown 内容解析
需要处理的操作包括:
The text was updated successfully, but these errors were encountered: