├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.textile ├── logo ├── logo.pptx.xml └── logo.svg ├── package.json ├── pnpm-lock.yaml ├── src └── index.html └── templates ├── annote.d.ts └── markdown.ejs /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/LICENSE -------------------------------------------------------------------------------- /README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/README.textile -------------------------------------------------------------------------------- /logo/logo.pptx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/logo/logo.pptx.xml -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/src/index.html -------------------------------------------------------------------------------- /templates/annote.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/templates/annote.d.ts -------------------------------------------------------------------------------- /templates/markdown.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverflowCat/logseq-simpread/HEAD/templates/markdown.ejs --------------------------------------------------------------------------------