├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── custom ├── feed.opml └── feedlist.opml ├── generate ├── all.html └── all.opml ├── index.js ├── merge.sh ├── merge.xml ├── package.json └── yarn.lock /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/README.md -------------------------------------------------------------------------------- /data/custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/data/custom -------------------------------------------------------------------------------- /data/feed.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/data/feed.opml -------------------------------------------------------------------------------- /data/feedlist.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/data/feedlist.opml -------------------------------------------------------------------------------- /generate/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/generate/all.html -------------------------------------------------------------------------------- /generate/all.opml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/generate/all.opml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/index.js -------------------------------------------------------------------------------- /merge.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | xmllint -xinclude merge.xml > generate/all.opml -------------------------------------------------------------------------------- /merge.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/merge.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/package.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotosbin/opml-list/HEAD/yarn.lock --------------------------------------------------------------------------------