├── .devcontainer └── devcontainer.json ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── LICENSE.txt ├── README.adoc ├── docker └── gitpod-pandoc.Dockerfile ├── docs ├── arc42-requirements.adoc ├── arc42-requirements.html ├── confluence.adoc └── export2confluence.adoc ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── publish └── build.gradle ├── settings.gradle ├── small-arc42-logo.png ├── subBuild.gradle ├── switchToreq42.sh └── width-filter-docBook.lua /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/.gitmodules -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/README.adoc -------------------------------------------------------------------------------- /docker/gitpod-pandoc.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/docker/gitpod-pandoc.Dockerfile -------------------------------------------------------------------------------- /docs/arc42-requirements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/docs/arc42-requirements.adoc -------------------------------------------------------------------------------- /docs/arc42-requirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/docs/arc42-requirements.html -------------------------------------------------------------------------------- /docs/confluence.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/docs/confluence.adoc -------------------------------------------------------------------------------- /docs/export2confluence.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/docs/export2confluence.adoc -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/gradlew.bat -------------------------------------------------------------------------------- /publish/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/publish/build.gradle -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/settings.gradle -------------------------------------------------------------------------------- /small-arc42-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/small-arc42-logo.png -------------------------------------------------------------------------------- /subBuild.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/subBuild.gradle -------------------------------------------------------------------------------- /switchToreq42.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc42/arc42-generator/HEAD/switchToreq42.sh -------------------------------------------------------------------------------- /width-filter-docBook.lua: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------