├── .circleci └── config.yml ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE.adoc ├── README.adoc ├── docs ├── examples │ ├── main-no-planning-no-schema │ │ └── no-no.adoc │ └── main │ │ ├── _content │ │ ├── 01_runners.adoc │ │ └── sub-content │ │ │ └── runner-architecture.adoc │ │ ├── images │ │ ├── alternative.jpg │ │ ├── chapters.png │ │ ├── pipeline-devops.png │ │ └── pipeline-real-life.jpg │ │ └── my-main.adoc ├── guides │ └── guides │ │ ├── _includes │ │ ├── attrs-charref.adoc │ │ ├── attrs-env.adoc │ │ ├── ex-admon.adoc │ │ ├── ex-author.adoc │ │ ├── ex-biblio.adoc │ │ ├── ex-callout.adoc │ │ ├── ex-comment.adoc │ │ ├── ex-counter.adoc │ │ ├── ex-dlist.adoc │ │ ├── ex-example.adoc │ │ ├── ex-footnote.adoc │ │ ├── ex-header-attr.adoc │ │ ├── ex-header-title.adoc │ │ ├── ex-hr.adoc │ │ ├── ex-image.adoc │ │ ├── ex-include.adoc │ │ ├── ex-listing.adoc │ │ ├── ex-literal.adoc │ │ ├── ex-o-list.adoc │ │ ├── ex-open.adoc │ │ ├── ex-pass.adoc │ │ ├── ex-quote.adoc │ │ ├── ex-rev.adoc │ │ ├── ex-section.adoc │ │ ├── ex-sidebar.adoc │ │ ├── ex-src.adoc │ │ ├── ex-subs.adoc │ │ ├── ex-table-cell.adoc │ │ ├── ex-table-data.adoc │ │ ├── ex-table.adoc │ │ ├── ex-text.adoc │ │ ├── ex-toc.adoc │ │ ├── ex-ui.adoc │ │ ├── ex-ulist.adoc │ │ ├── ex-url.adoc │ │ ├── ex-video.adoc │ │ ├── ex-xref.adoc │ │ ├── subs-apply.adoc │ │ └── subs-symbol-repl.adoc │ │ ├── images │ │ ├── Asciidoctor.png │ │ ├── asciidoctorj-screenshot.png │ │ ├── dont-reboot-it-just-patch.jpg │ │ ├── ex-tree-view-new.png │ │ ├── one-ring.jpg │ │ ├── pause.png │ │ ├── play.png │ │ ├── screenshot.jpg │ │ ├── sunset.jpg │ │ └── tree-asciidoctor-maven-sample.png │ │ ├── reveal-my-asciidoc.adoc │ │ └── syntax-quick-reference.adoc └── index.adoc ├── framework ├── docinfo-footer.html ├── docinfo-revealjs.html ├── lib │ ├── c3.v0-6-11.min.css │ ├── c3.v0-6-11.min.js │ ├── c3js-block-macro.rb │ ├── c3js-block-macro │ │ └── extension.rb │ ├── cloud-block-macro.rb │ ├── cloud-block-macro │ │ └── extension.rb │ ├── copy-to-clipboard-docinfo-processor.rb │ ├── copy-to-clipboard-docinfo-processor │ │ ├── behavior.js │ │ ├── extension.rb │ │ ├── img │ │ │ └── octicons-16.svg │ │ ├── sample.adoc │ │ └── styles.css │ ├── d3.layout.cloud.js │ ├── d3.v5-7-0.min.js │ └── highlight │ │ ├── highlight.min.js │ │ └── styles │ │ └── gruvbox-dark.min.css ├── revealjs-plugins │ ├── chalkboard │ │ ├── README.md │ │ ├── img │ │ │ ├── blackboard.png │ │ │ ├── boardmarker-black.png │ │ │ ├── boardmarker-blue.png │ │ │ ├── boardmarker-green.png │ │ │ ├── boardmarker-orange.png │ │ │ ├── boardmarker-purple.png │ │ │ ├── boardmarker-red.png │ │ │ ├── boardmarker-yellow.png │ │ │ ├── chalk-blue.png │ │ │ ├── chalk-green.png │ │ │ ├── chalk-orange.png │ │ │ ├── chalk-purple.png │ │ │ ├── chalk-red.png │ │ │ ├── chalk-white.png │ │ │ ├── chalk-yellow.png │ │ │ ├── sponge.png │ │ │ └── whiteboard.png │ │ ├── plugin.js │ │ └── style.css │ ├── menu │ │ ├── LICENSE │ │ ├── README.md │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── brands.css │ │ │ │ ├── fontawesome.css │ │ │ │ ├── regular.css │ │ │ │ ├── solid.css │ │ │ │ ├── svg-with-js.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── menu.css │ │ ├── menu.esm.js │ │ ├── menu.js │ │ └── plugin.js │ ├── revealjs-plugins-conf.js │ ├── revealjs-plugins.js │ ├── skip-fragments │ │ ├── LICENSE │ │ ├── README.md │ │ └── skip-fragments.js │ ├── spotlight │ │ ├── README.md │ │ └── spotlight.js │ └── title-footer │ │ └── title-footer.js └── themes │ ├── backgrounds │ ├── brest-sea.jpg │ ├── code-html-multicolor.jpg │ ├── code-html-orange.jpg │ ├── code-html-pink.jpg │ ├── code-java-blue.jpg │ ├── code-php-dark.jpg │ ├── code-php-multicolor.jpg │ ├── code-python.jpg │ ├── containers-cartoon.jpg │ ├── containers-dark.jpg │ ├── containers-miniature.jpg │ ├── containers.jpg │ ├── gitlab-diablo.jpg │ ├── gitlab.jpg │ ├── helm-boat.jpg │ ├── iceland-white.jpg │ ├── japan-biche.jpg │ ├── japan-garden.jpg │ ├── japan-shibuya.jpg │ ├── japan-street-old.jpg │ ├── japan-table.jpg │ ├── market-background.png │ ├── matrix-cuneiform.jpg │ ├── matrix-numbers.jpg │ ├── ocean-boats.jpg │ ├── rocher-grass-dark.jpg │ ├── rocher-grass-light.jpg │ ├── rocher-leaves-dark.jpg │ ├── rocher-leaves-light.jpg │ ├── rocher-sunrise-2020.jpg │ ├── rock-climbing.jpg │ ├── scuba-diving.jpg │ └── security-binary-lock.jpg │ ├── bubbles-slow.svg │ ├── css │ ├── html-asciidoctor-default.css │ ├── html-zenika.css │ ├── reveal-code-html-multicolor.css │ ├── reveal-code-html-orange.css │ ├── reveal-code-html-pink.css │ ├── reveal-code-java-blue.css │ ├── reveal-code-php-dark.css │ ├── reveal-code-php-multicolor.css │ ├── reveal-code-python.css │ ├── reveal-containers-cartoon.css │ ├── reveal-containers-dark.css │ ├── reveal-containers-miniature.css │ ├── reveal-containers.css │ ├── reveal-gitlab-dark.css │ ├── reveal-gitlab-light.css │ ├── reveal-matrix-cuneiform.css │ ├── reveal-matrix-numbers.css │ ├── reveal-rocher-dark.css │ ├── reveal-rocher-grass-dark.css │ ├── reveal-rocher-grass-light.css │ ├── reveal-rocher-leaves-dark.css │ ├── reveal-rocher-leaves-light.css │ ├── reveal-rocher-light.css │ ├── reveal-rocher-sunrise-2020.css │ ├── reveal-rocher.css │ ├── reveal-security-binary-lock.css │ ├── reveal-zenika-brest-sea.css │ ├── reveal-zenika-cambodia-sunset.css │ ├── reveal-zenika-dark.css │ ├── reveal-zenika-helm-boat.css │ ├── reveal-zenika-iceland-white.css │ ├── reveal-zenika-japan-biche.css │ ├── reveal-zenika-japan-garden.css │ ├── reveal-zenika-japan-shibuya.css │ ├── reveal-zenika-japan-street-old.css │ ├── reveal-zenika-japan-table.css │ ├── reveal-zenika-light.css │ ├── reveal-zenika-market-2020.css │ ├── reveal-zenika-ocean-boats.css │ ├── reveal-zenika-rock-climbing.css │ ├── reveal-zenika-scuba-diving.css │ └── reveal-zenika.css │ ├── demo-duck-alt.jpg │ ├── demo-duck.jpg │ ├── favicon-rocher.png │ ├── favicon-white.png │ ├── favicon.png │ ├── fireflies-10-white.svg │ ├── fonts │ ├── Candara-Regular.ttf │ ├── DroidSansMono.ttf │ ├── Montserrat-Bold.ttf │ ├── Montserrat-ExtraBold.ttf │ ├── Mplus-1m-regular.ttf │ ├── SourceSansPro-Regular.ttf │ └── pdf │ │ ├── Symbola.ttf │ │ ├── lato-bold.ttf │ │ ├── lato-bold_italic.ttf │ │ ├── lato-italic.ttf │ │ ├── lato-regular.ttf │ │ ├── mplus1mn-bold-ascii.ttf │ │ ├── mplus1mn-bold_italic-ascii.ttf │ │ ├── mplus1mn-italic-ascii.ttf │ │ ├── mplus1mn-regular-ascii-conums.ttf │ │ └── mplus1p-regular-fallback.ttf │ ├── home-working.jpg │ ├── logo-rocher.png │ ├── logo-zenika-full-white.png │ ├── logo-zenika-white.png │ ├── logo-zenika.png │ ├── market-logoZ-full-white.png │ ├── market-logoZ-white.png │ ├── market-logoZ.png │ ├── pdf-theme.yml │ ├── plantuml.cfg │ ├── plantuml.doc.carmin.cfg │ ├── plantuml.doc.light.cfg │ ├── question-mark-orange.svg │ ├── question-mark.png │ ├── question-mark.svg │ ├── real-hands.png │ ├── rubber-duck-debugging.jpg │ ├── snow-slow.svg │ ├── speak-bubbles.svg │ ├── th-market │ ├── market-agences.png │ ├── market-agenda.jpg │ ├── market-bienvenue.png │ ├── market-coding1.jpg │ ├── market-coding2.jpg │ ├── market-coding3.jpg │ ├── market-email.png │ ├── market-hat.png │ └── market-muscle.png │ ├── watching-duck.jpg │ └── welcome-duck.jpg ├── generate.sh ├── gitlab-purge-pipelines.py ├── logo.png ├── preview-dark.jpg ├── preview-html.jpg ├── preview-light.jpg ├── preview-pdf.jpg └── windows-instructions.adoc /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/LICENSE.adoc -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/README.adoc -------------------------------------------------------------------------------- /docs/examples/main-no-planning-no-schema/no-no.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main-no-planning-no-schema/no-no.adoc -------------------------------------------------------------------------------- /docs/examples/main/_content/01_runners.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/_content/01_runners.adoc -------------------------------------------------------------------------------- /docs/examples/main/_content/sub-content/runner-architecture.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/_content/sub-content/runner-architecture.adoc -------------------------------------------------------------------------------- /docs/examples/main/images/alternative.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/images/alternative.jpg -------------------------------------------------------------------------------- /docs/examples/main/images/chapters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/images/chapters.png -------------------------------------------------------------------------------- /docs/examples/main/images/pipeline-devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/images/pipeline-devops.png -------------------------------------------------------------------------------- /docs/examples/main/images/pipeline-real-life.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/images/pipeline-real-life.jpg -------------------------------------------------------------------------------- /docs/examples/main/my-main.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/examples/main/my-main.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/attrs-charref.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/attrs-charref.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/attrs-env.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/attrs-env.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-admon.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-admon.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-author.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-author.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-biblio.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-biblio.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-callout.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-callout.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-comment.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-comment.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-counter.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-counter.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-dlist.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-dlist.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-example.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-footnote.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-footnote.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-header-attr.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-header-attr.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-header-title.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-header-title.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-hr.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-hr.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-image.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-image.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-include.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-include.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-listing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-listing.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-literal.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-literal.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-o-list.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-o-list.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-open.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-open.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-pass.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-pass.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-quote.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-quote.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-rev.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-rev.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-section.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-section.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-sidebar.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-sidebar.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-src.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-src.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-subs.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-subs.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-table-cell.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-table-cell.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-table-data.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-table-data.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-table.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-table.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-text.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-text.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-toc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-toc.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-ui.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-ui.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-ulist.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-ulist.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-url.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-url.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-video.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-video.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/ex-xref.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/ex-xref.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/subs-apply.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/subs-apply.adoc -------------------------------------------------------------------------------- /docs/guides/guides/_includes/subs-symbol-repl.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/_includes/subs-symbol-repl.adoc -------------------------------------------------------------------------------- /docs/guides/guides/images/Asciidoctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/Asciidoctor.png -------------------------------------------------------------------------------- /docs/guides/guides/images/asciidoctorj-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/asciidoctorj-screenshot.png -------------------------------------------------------------------------------- /docs/guides/guides/images/dont-reboot-it-just-patch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/dont-reboot-it-just-patch.jpg -------------------------------------------------------------------------------- /docs/guides/guides/images/ex-tree-view-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/ex-tree-view-new.png -------------------------------------------------------------------------------- /docs/guides/guides/images/one-ring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/one-ring.jpg -------------------------------------------------------------------------------- /docs/guides/guides/images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/pause.png -------------------------------------------------------------------------------- /docs/guides/guides/images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/play.png -------------------------------------------------------------------------------- /docs/guides/guides/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/screenshot.jpg -------------------------------------------------------------------------------- /docs/guides/guides/images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/sunset.jpg -------------------------------------------------------------------------------- /docs/guides/guides/images/tree-asciidoctor-maven-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/images/tree-asciidoctor-maven-sample.png -------------------------------------------------------------------------------- /docs/guides/guides/reveal-my-asciidoc.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/reveal-my-asciidoc.adoc -------------------------------------------------------------------------------- /docs/guides/guides/syntax-quick-reference.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/guides/guides/syntax-quick-reference.adoc -------------------------------------------------------------------------------- /docs/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/docs/index.adoc -------------------------------------------------------------------------------- /framework/docinfo-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/docinfo-footer.html -------------------------------------------------------------------------------- /framework/docinfo-revealjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/docinfo-revealjs.html -------------------------------------------------------------------------------- /framework/lib/c3.v0-6-11.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/c3.v0-6-11.min.css -------------------------------------------------------------------------------- /framework/lib/c3.v0-6-11.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/c3.v0-6-11.min.js -------------------------------------------------------------------------------- /framework/lib/c3js-block-macro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/c3js-block-macro.rb -------------------------------------------------------------------------------- /framework/lib/c3js-block-macro/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/c3js-block-macro/extension.rb -------------------------------------------------------------------------------- /framework/lib/cloud-block-macro.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/cloud-block-macro.rb -------------------------------------------------------------------------------- /framework/lib/cloud-block-macro/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/cloud-block-macro/extension.rb -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor.rb -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor/behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor/behavior.js -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor/extension.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor/extension.rb -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor/img/octicons-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor/img/octicons-16.svg -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor/sample.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor/sample.adoc -------------------------------------------------------------------------------- /framework/lib/copy-to-clipboard-docinfo-processor/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/copy-to-clipboard-docinfo-processor/styles.css -------------------------------------------------------------------------------- /framework/lib/d3.layout.cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/d3.layout.cloud.js -------------------------------------------------------------------------------- /framework/lib/d3.v5-7-0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/d3.v5-7-0.min.js -------------------------------------------------------------------------------- /framework/lib/highlight/highlight.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/highlight/highlight.min.js -------------------------------------------------------------------------------- /framework/lib/highlight/styles/gruvbox-dark.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/lib/highlight/styles/gruvbox-dark.min.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/README.md -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/blackboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/blackboard.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-black.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-blue.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-green.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-orange.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-purple.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-red.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/boardmarker-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/boardmarker-yellow.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-blue.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-green.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-orange.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-purple.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-red.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-white.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/chalk-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/chalk-yellow.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/sponge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/sponge.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/img/whiteboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/img/whiteboard.png -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/plugin.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/chalkboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/chalkboard/style.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/LICENSE -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/README.md -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/all.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/brands.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/fontawesome.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/regular.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/solid.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/svg-with-js.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/v4-shims.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/css/v4-shims.min.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/menu.css -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/menu.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/menu.esm.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/menu.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/menu/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/menu/plugin.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/revealjs-plugins-conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/revealjs-plugins-conf.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/revealjs-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/revealjs-plugins.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/skip-fragments/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/skip-fragments/LICENSE -------------------------------------------------------------------------------- /framework/revealjs-plugins/skip-fragments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/skip-fragments/README.md -------------------------------------------------------------------------------- /framework/revealjs-plugins/skip-fragments/skip-fragments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/skip-fragments/skip-fragments.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/spotlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/spotlight/README.md -------------------------------------------------------------------------------- /framework/revealjs-plugins/spotlight/spotlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/spotlight/spotlight.js -------------------------------------------------------------------------------- /framework/revealjs-plugins/title-footer/title-footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/revealjs-plugins/title-footer/title-footer.js -------------------------------------------------------------------------------- /framework/themes/backgrounds/brest-sea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/brest-sea.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-html-multicolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-html-multicolor.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-html-orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-html-orange.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-html-pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-html-pink.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-java-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-java-blue.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-php-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-php-dark.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-php-multicolor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-php-multicolor.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/code-python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/code-python.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/containers-cartoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/containers-cartoon.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/containers-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/containers-dark.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/containers-miniature.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/containers-miniature.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/containers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/containers.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/gitlab-diablo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/gitlab-diablo.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/gitlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/gitlab.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/helm-boat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/helm-boat.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/iceland-white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/iceland-white.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/japan-biche.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/japan-biche.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/japan-garden.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/japan-garden.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/japan-shibuya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/japan-shibuya.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/japan-street-old.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/japan-street-old.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/japan-table.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/japan-table.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/market-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/market-background.png -------------------------------------------------------------------------------- /framework/themes/backgrounds/matrix-cuneiform.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/matrix-cuneiform.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/matrix-numbers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/matrix-numbers.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/ocean-boats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/ocean-boats.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rocher-grass-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rocher-grass-dark.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rocher-grass-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rocher-grass-light.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rocher-leaves-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rocher-leaves-dark.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rocher-leaves-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rocher-leaves-light.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rocher-sunrise-2020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rocher-sunrise-2020.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/rock-climbing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/rock-climbing.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/scuba-diving.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/scuba-diving.jpg -------------------------------------------------------------------------------- /framework/themes/backgrounds/security-binary-lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/backgrounds/security-binary-lock.jpg -------------------------------------------------------------------------------- /framework/themes/bubbles-slow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/bubbles-slow.svg -------------------------------------------------------------------------------- /framework/themes/css/html-asciidoctor-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/html-asciidoctor-default.css -------------------------------------------------------------------------------- /framework/themes/css/html-zenika.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/html-zenika.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-html-multicolor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-html-multicolor.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-html-orange.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-html-orange.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-html-pink.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-html-pink.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-java-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-java-blue.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-php-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-php-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-php-multicolor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-php-multicolor.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-code-python.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-code-python.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-containers-cartoon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-containers-cartoon.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-containers-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-containers-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-containers-miniature.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-containers-miniature.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-containers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-containers.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-gitlab-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-gitlab-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-gitlab-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-gitlab-light.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-matrix-cuneiform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-matrix-cuneiform.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-matrix-numbers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-matrix-numbers.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-grass-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-grass-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-grass-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-grass-light.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-leaves-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-leaves-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-leaves-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-leaves-light.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-light.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher-sunrise-2020.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher-sunrise-2020.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-rocher.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-rocher.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-security-binary-lock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-security-binary-lock.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-brest-sea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-brest-sea.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-cambodia-sunset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-cambodia-sunset.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-dark.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-helm-boat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-helm-boat.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-iceland-white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-iceland-white.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-japan-biche.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-japan-biche.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-japan-garden.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-japan-garden.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-japan-shibuya.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-japan-shibuya.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-japan-street-old.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-japan-street-old.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-japan-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-japan-table.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-light.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-market-2020.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-market-2020.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-ocean-boats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-ocean-boats.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-rock-climbing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-rock-climbing.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika-scuba-diving.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika-scuba-diving.css -------------------------------------------------------------------------------- /framework/themes/css/reveal-zenika.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/css/reveal-zenika.css -------------------------------------------------------------------------------- /framework/themes/demo-duck-alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/demo-duck-alt.jpg -------------------------------------------------------------------------------- /framework/themes/demo-duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/demo-duck.jpg -------------------------------------------------------------------------------- /framework/themes/favicon-rocher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/favicon-rocher.png -------------------------------------------------------------------------------- /framework/themes/favicon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/favicon-white.png -------------------------------------------------------------------------------- /framework/themes/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/favicon.png -------------------------------------------------------------------------------- /framework/themes/fireflies-10-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fireflies-10-white.svg -------------------------------------------------------------------------------- /framework/themes/fonts/Candara-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/Candara-Regular.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/Mplus-1m-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/Mplus-1m-regular.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/SourceSansPro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/SourceSansPro-Regular.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/Symbola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/Symbola.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/lato-bold.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/lato-bold_italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/lato-bold_italic.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/lato-italic.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/lato-regular.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/mplus1mn-bold-ascii.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/mplus1mn-bold-ascii.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/mplus1mn-bold_italic-ascii.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/mplus1mn-bold_italic-ascii.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/mplus1mn-italic-ascii.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/mplus1mn-italic-ascii.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/mplus1mn-regular-ascii-conums.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/mplus1mn-regular-ascii-conums.ttf -------------------------------------------------------------------------------- /framework/themes/fonts/pdf/mplus1p-regular-fallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/fonts/pdf/mplus1p-regular-fallback.ttf -------------------------------------------------------------------------------- /framework/themes/home-working.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/home-working.jpg -------------------------------------------------------------------------------- /framework/themes/logo-rocher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/logo-rocher.png -------------------------------------------------------------------------------- /framework/themes/logo-zenika-full-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/logo-zenika-full-white.png -------------------------------------------------------------------------------- /framework/themes/logo-zenika-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/logo-zenika-white.png -------------------------------------------------------------------------------- /framework/themes/logo-zenika.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/logo-zenika.png -------------------------------------------------------------------------------- /framework/themes/market-logoZ-full-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/market-logoZ-full-white.png -------------------------------------------------------------------------------- /framework/themes/market-logoZ-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/market-logoZ-white.png -------------------------------------------------------------------------------- /framework/themes/market-logoZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/market-logoZ.png -------------------------------------------------------------------------------- /framework/themes/pdf-theme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/pdf-theme.yml -------------------------------------------------------------------------------- /framework/themes/plantuml.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/plantuml.cfg -------------------------------------------------------------------------------- /framework/themes/plantuml.doc.carmin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/plantuml.doc.carmin.cfg -------------------------------------------------------------------------------- /framework/themes/plantuml.doc.light.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/plantuml.doc.light.cfg -------------------------------------------------------------------------------- /framework/themes/question-mark-orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/question-mark-orange.svg -------------------------------------------------------------------------------- /framework/themes/question-mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/question-mark.png -------------------------------------------------------------------------------- /framework/themes/question-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/question-mark.svg -------------------------------------------------------------------------------- /framework/themes/real-hands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/real-hands.png -------------------------------------------------------------------------------- /framework/themes/rubber-duck-debugging.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/rubber-duck-debugging.jpg -------------------------------------------------------------------------------- /framework/themes/snow-slow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/snow-slow.svg -------------------------------------------------------------------------------- /framework/themes/speak-bubbles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/speak-bubbles.svg -------------------------------------------------------------------------------- /framework/themes/th-market/market-agences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-agences.png -------------------------------------------------------------------------------- /framework/themes/th-market/market-agenda.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-agenda.jpg -------------------------------------------------------------------------------- /framework/themes/th-market/market-bienvenue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-bienvenue.png -------------------------------------------------------------------------------- /framework/themes/th-market/market-coding1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-coding1.jpg -------------------------------------------------------------------------------- /framework/themes/th-market/market-coding2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-coding2.jpg -------------------------------------------------------------------------------- /framework/themes/th-market/market-coding3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-coding3.jpg -------------------------------------------------------------------------------- /framework/themes/th-market/market-email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-email.png -------------------------------------------------------------------------------- /framework/themes/th-market/market-hat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-hat.png -------------------------------------------------------------------------------- /framework/themes/th-market/market-muscle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/th-market/market-muscle.png -------------------------------------------------------------------------------- /framework/themes/watching-duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/watching-duck.jpg -------------------------------------------------------------------------------- /framework/themes/welcome-duck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/framework/themes/welcome-duck.jpg -------------------------------------------------------------------------------- /generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/generate.sh -------------------------------------------------------------------------------- /gitlab-purge-pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/gitlab-purge-pipelines.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/logo.png -------------------------------------------------------------------------------- /preview-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/preview-dark.jpg -------------------------------------------------------------------------------- /preview-html.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/preview-html.jpg -------------------------------------------------------------------------------- /preview-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/preview-light.jpg -------------------------------------------------------------------------------- /preview-pdf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/preview-pdf.jpg -------------------------------------------------------------------------------- /windows-instructions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zenika/adoc-presentation-model/HEAD/windows-instructions.adoc --------------------------------------------------------------------------------