├── .appveyor.yml ├── .github └── workflows │ ├── ai-revision.yaml │ └── manubot.yaml ├── .gitignore ├── LICENSE-CC0.md ├── LICENSE.md ├── README.md ├── USAGE.md ├── ci ├── .gitignore ├── README.md ├── ai-revision-config.yaml ├── ai-revision-prompts.yaml ├── deploy.sh ├── install-spellcheck.sh └── install.sh ├── content ├── 00.front-matter.md ├── 01.abstract.md ├── 02.main-text.md ├── 90.back-matter.md ├── images │ ├── github.svg │ ├── mastodon.svg │ ├── orcid.svg │ └── twitter.svg ├── manual-references.bib ├── manual-references.json └── metadata.yaml ├── output └── README.md ├── setup.bash ├── thumbnail.png └── webpage ├── README.md ├── images ├── index.html └── manuscript.pdf /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/ai-revision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/.github/workflows/ai-revision.yaml -------------------------------------------------------------------------------- /.github/workflows/manubot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/.github/workflows/manubot.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-CC0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/LICENSE-CC0.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/README.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/USAGE.md -------------------------------------------------------------------------------- /ci/.gitignore: -------------------------------------------------------------------------------- 1 | # SSH public and private keys 2 | deploy.key* 3 | -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/ai-revision-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/ai-revision-config.yaml -------------------------------------------------------------------------------- /ci/ai-revision-prompts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/ai-revision-prompts.yaml -------------------------------------------------------------------------------- /ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/deploy.sh -------------------------------------------------------------------------------- /ci/install-spellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/install-spellcheck.sh -------------------------------------------------------------------------------- /ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/ci/install.sh -------------------------------------------------------------------------------- /content/00.front-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/00.front-matter.md -------------------------------------------------------------------------------- /content/01.abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/01.abstract.md -------------------------------------------------------------------------------- /content/02.main-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/02.main-text.md -------------------------------------------------------------------------------- /content/90.back-matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/90.back-matter.md -------------------------------------------------------------------------------- /content/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/images/github.svg -------------------------------------------------------------------------------- /content/images/mastodon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/images/mastodon.svg -------------------------------------------------------------------------------- /content/images/orcid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/images/orcid.svg -------------------------------------------------------------------------------- /content/images/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/images/twitter.svg -------------------------------------------------------------------------------- /content/manual-references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/manual-references.bib -------------------------------------------------------------------------------- /content/manual-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/manual-references.json -------------------------------------------------------------------------------- /content/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/content/metadata.yaml -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/output/README.md -------------------------------------------------------------------------------- /setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/setup.bash -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/thumbnail.png -------------------------------------------------------------------------------- /webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manubot/try-manubot/HEAD/webpage/README.md -------------------------------------------------------------------------------- /webpage/images: -------------------------------------------------------------------------------- 1 | v/latest/images -------------------------------------------------------------------------------- /webpage/index.html: -------------------------------------------------------------------------------- 1 | v/latest/index.html -------------------------------------------------------------------------------- /webpage/manuscript.pdf: -------------------------------------------------------------------------------- 1 | v/latest/manuscript.pdf --------------------------------------------------------------------------------