├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .postcssrc ├── LICENSE.md ├── README.md ├── icon.png ├── package.json ├── screenshots ├── demo.gif ├── inline-random.gif ├── renderer.gif ├── sample-highlights.png ├── sample-tweet.png ├── sample-tweetthread.png ├── settings.png └── sync.png ├── src ├── App.css ├── App.tsx ├── components │ ├── Basics.tsx │ ├── Customise.tsx │ ├── ProgressBar.tsx │ ├── RandomHighlight.tsx │ └── Sync.tsx ├── index.html ├── index.tsx ├── randomHighlight-old.tsx ├── services │ ├── bookView.ts │ ├── checkOrgOrMarkdown.ts │ ├── handleClosePopup.ts │ ├── pluginBar.tsx │ ├── randomHighlightsUtilities.ts │ └── utilities.ts └── tailwind.css └── tailwind.config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-vendored -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [hkgnp] 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/.postcssrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /screenshots/inline-random.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/inline-random.gif -------------------------------------------------------------------------------- /screenshots/renderer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/renderer.gif -------------------------------------------------------------------------------- /screenshots/sample-highlights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/sample-highlights.png -------------------------------------------------------------------------------- /screenshots/sample-tweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/sample-tweet.png -------------------------------------------------------------------------------- /screenshots/sample-tweetthread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/sample-tweetthread.png -------------------------------------------------------------------------------- /screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/settings.png -------------------------------------------------------------------------------- /screenshots/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/screenshots/sync.png -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Basics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/components/Basics.tsx -------------------------------------------------------------------------------- /src/components/Customise.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/components/Customise.tsx -------------------------------------------------------------------------------- /src/components/ProgressBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/components/ProgressBar.tsx -------------------------------------------------------------------------------- /src/components/RandomHighlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/components/RandomHighlight.tsx -------------------------------------------------------------------------------- /src/components/Sync.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/components/Sync.tsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/randomHighlight-old.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/randomHighlight-old.tsx -------------------------------------------------------------------------------- /src/services/bookView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/bookView.ts -------------------------------------------------------------------------------- /src/services/checkOrgOrMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/checkOrgOrMarkdown.ts -------------------------------------------------------------------------------- /src/services/handleClosePopup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/handleClosePopup.ts -------------------------------------------------------------------------------- /src/services/pluginBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/pluginBar.tsx -------------------------------------------------------------------------------- /src/services/randomHighlightsUtilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/randomHighlightsUtilities.ts -------------------------------------------------------------------------------- /src/services/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/services/utilities.ts -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjypng/logseq-readwise-plugin/HEAD/tailwind.config.js --------------------------------------------------------------------------------