用导出的数据进行导入
上一章节讲了如何导出。导入则是使用导出的数据。
方式是进入到 Manage Sources
命令,对任意阅读源唤起 Actions,进行如下操作:
拷贝导出的数据到文本框后,cmd + Enter
进行保存:
校验会花一些时间(主要是RSS Link校验耗时),请耐心等待。
⚠️
若导入失败,请参考文档 (opens in a new tab)进行排查。
直接手写导入
正常情况下录入阅读源是通过 Add Source
表单。如果你嫌麻烦,也想批量导入,可以参考以下类型(问号代表非必填),在文本框中填写的内容符合 Source[]
(需要是一个数组) 即可:
export interface Source {
url: string;
title: string;
// default is "everyday"
schedule?: "everyday" | "custom";
customDays?: (
| "Mondy"
| "Tuesday"
| "Wednesday"
| "Thursday"
| "Friday"
| "Saturday"
| "Sunday"
)[];
rssLink?: string;
// Time span of the content pulled by rss, default is "1", means one day
timeSpan?: string;
tags?: string[];
// favicon url
favicon?: string;
}