├── .cirrus.yml ├── .gitignore ├── BUILD.bazel ├── COPYING ├── LICENSE ├── README.md ├── WORKSPACE ├── pandoc.bzl ├── repositories.bzl ├── sample ├── BUILD.bazel └── README.md └── toolchain.bzl /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/WORKSPACE -------------------------------------------------------------------------------- /pandoc.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/pandoc.bzl -------------------------------------------------------------------------------- /repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/repositories.bzl -------------------------------------------------------------------------------- /sample/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/sample/BUILD.bazel -------------------------------------------------------------------------------- /sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/sample/README.md -------------------------------------------------------------------------------- /toolchain.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdriveTechnologies/bazel-pandoc/HEAD/toolchain.bzl --------------------------------------------------------------------------------