├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin └── api2html.js ├── docs ├── index.html └── petstore │ └── index.html ├── examples ├── asyncapi-simple.yml ├── openapi-petstore.yml ├── openapi-simple.yml └── sample-logo.png └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | examples/ 2 | out/ 3 | docs/ 4 | .idea 5 | *.html 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/README.md -------------------------------------------------------------------------------- /bin/api2html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/bin/api2html.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/petstore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/docs/petstore/index.html -------------------------------------------------------------------------------- /examples/asyncapi-simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/examples/asyncapi-simple.yml -------------------------------------------------------------------------------- /examples/openapi-petstore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/examples/openapi-petstore.yml -------------------------------------------------------------------------------- /examples/openapi-simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/examples/openapi-simple.yml -------------------------------------------------------------------------------- /examples/sample-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/examples/sample-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobilg/api2html/HEAD/package.json --------------------------------------------------------------------------------