├── .editorconfig ├── .github └── workflows │ ├── ci.yml │ └── docker.yml ├── Dockerfile ├── LICENSE.md ├── README.md ├── action.yml ├── entrypoint.sh └── proof-html.rb /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /proof-html.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anishathalye/proof-html/HEAD/proof-html.rb --------------------------------------------------------------------------------