├── .gitignore ├── .vscode └── launch.json ├── LICENSE.md ├── Note.code-search ├── Proto.code-search ├── README.md ├── data ├── all_repos.txt ├── all_services.clean.1-with_links.json ├── all_services.clean.2.json ├── all_services.clean.json ├── all_services.json ├── all_services.no_doc_url.json ├── ecs-toc.json └── sample_doc.md ├── jest.config.js ├── package.json ├── src ├── __snapshots__ │ ├── extract.spec.js.snap │ ├── extract.spec.ts.snap │ ├── proto.spec.js.snap │ └── proto.spec.ts.snap ├── cli.ts ├── constants │ ├── aws.ts │ └── index.ts ├── core │ └── extractNotesFromService.ts ├── extract.spec.ts ├── index.ts ├── main.ts ├── proj.aws-docs.code-workspace ├── proto.spec.ts ├── scripts │ ├── gen_all_services.ts │ ├── get_all_services_with_links.ts │ ├── oneoff-fixapireference.ts │ └── oneoff-two.ts ├── targets │ ├── base.ts │ ├── html.ts │ ├── index.ts │ └── markdown.ts ├── types │ └── index.ts └── utils │ ├── aws.ts │ ├── index.ts │ ├── links.spec.ts │ └── links.ts ├── test.md ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Note.code-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/Note.code-search -------------------------------------------------------------------------------- /Proto.code-search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/Proto.code-search -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/README.md -------------------------------------------------------------------------------- /data/all_repos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_repos.txt -------------------------------------------------------------------------------- /data/all_services.clean.1-with_links.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_services.clean.1-with_links.json -------------------------------------------------------------------------------- /data/all_services.clean.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_services.clean.2.json -------------------------------------------------------------------------------- /data/all_services.clean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_services.clean.json -------------------------------------------------------------------------------- /data/all_services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_services.json -------------------------------------------------------------------------------- /data/all_services.no_doc_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/all_services.no_doc_url.json -------------------------------------------------------------------------------- /data/ecs-toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/ecs-toc.json -------------------------------------------------------------------------------- /data/sample_doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/data/sample_doc.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/package.json -------------------------------------------------------------------------------- /src/__snapshots__/extract.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/__snapshots__/extract.spec.js.snap -------------------------------------------------------------------------------- /src/__snapshots__/extract.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/__snapshots__/extract.spec.ts.snap -------------------------------------------------------------------------------- /src/__snapshots__/proto.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/__snapshots__/proto.spec.js.snap -------------------------------------------------------------------------------- /src/__snapshots__/proto.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/__snapshots__/proto.spec.ts.snap -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/constants/aws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/constants/aws.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/core/extractNotesFromService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/core/extractNotesFromService.ts -------------------------------------------------------------------------------- /src/extract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/extract.spec.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/proj.aws-docs.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/proj.aws-docs.code-workspace -------------------------------------------------------------------------------- /src/proto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/proto.spec.ts -------------------------------------------------------------------------------- /src/scripts/gen_all_services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/scripts/gen_all_services.ts -------------------------------------------------------------------------------- /src/scripts/get_all_services_with_links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/scripts/get_all_services_with_links.ts -------------------------------------------------------------------------------- /src/scripts/oneoff-fixapireference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/scripts/oneoff-fixapireference.ts -------------------------------------------------------------------------------- /src/scripts/oneoff-two.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/scripts/oneoff-two.ts -------------------------------------------------------------------------------- /src/targets/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/targets/base.ts -------------------------------------------------------------------------------- /src/targets/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/targets/html.ts -------------------------------------------------------------------------------- /src/targets/index.ts: -------------------------------------------------------------------------------- 1 | export {HTMLTarget} from "./html.js" -------------------------------------------------------------------------------- /src/targets/markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/targets/markdown.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/utils/aws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/utils/aws.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- 1 | export {AWSUtils} from "./aws.js" -------------------------------------------------------------------------------- /src/utils/links.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/utils/links.spec.ts -------------------------------------------------------------------------------- /src/utils/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/src/utils/links.ts -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/test.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinslin/aws-doc-extractor/HEAD/yarn.lock --------------------------------------------------------------------------------