微信公众号文章批量导入为知笔记

2018年4月2日 | 标签:

一、下载微信公众号文章保存为html文件

1、有所有微信公众号文章的链接地址

2、使用firefox扩展DownThemAll下载所有html文件

二、使用Replace Pioneer提取html标题做为html文件的文件名

1、Replace Pioneer官网下载

http://www.mind-pioneer.com/replace/Download.html

2、打开软件Tools->Batch Runner

2、选中set output filename把后面的${FILENAME}改为:${FILENAME}{html_title}.html

3、观察文件名是否满足要求

4、点击File Rename

三、Replace Pioneer命名失败的html文件使用ahk+firefox手动重命名

1、一次性使用firefox打开50个html文件

2、ahk代码

#6::
Loop 50
{
send, ^s
sleep, 200
send, {enter}
sleep, 200
send, ^w
sleep, 200
}
return