docs(DocsTool): change typo 5

This commit is contained in:
Wolfram Gulde 2021-06-15 17:08:42 +02:00
parent 200914da17
commit 04a554999d

View File

@ -8,17 +8,39 @@ include:
- 'DocumentationTool.gitlab-ci.yaml' - 'DocumentationTool.gitlab-ci.yaml'
.generate-document: .generate-document:
extends: .pages-template image: gitlab.exxcellent.de:4567/gilden/ci/exxcellent-documentation-tool:latest
stage: generate-docs stage: generate-docs
variables: variables:
DOCUMENT_ROOT: "documentation" DOCUMENT_ROOT: "documentation"
OUTPUT_DIR: "tmp" INPUT_FILE: "document.adoc"
PAGE_PREFIX: "[CI/CD] - [TMPL] - " IMAGES_DIR: images
PAGE_SUFFIX: "bla" OUTPUT_DIR: tmp
PRINT_TOC: "true"
CREATE_SUB_PAGES: "false" CREATE_SUB_PAGES: "false"
CONFLUENCE_SPACE: "RANDI" REMOVE_ORPHANS: "true"
TEXT_GENERATED_HINT: '<ac:structured-macro ac:name="warning"><ac:parameter ac:name="title" /><ac:rich-text-body>This is a generated page, do not edit!</ac:rich-text-body></ac:structured-macro>' COMPACT_CHAPTER_LABELS: "true"
PAGE_PREFIX: "[CI/CD] - [TMPL] - "
CONFLUENCE_SPACE: RANDI
REV_NUMBER: $CI_COMMIT_SHORT_SHA
TEXT_GENERATED_HINT: '<ac:structured-macro ac:name="warning"><ac:parameter ac:name="title" /><ac:rich-text-body>This is a generated page, do not edit! All changes must happen in the https://gitlab.exxcellent.de/gilden/ci/exxcellent-documentation-tool[repository]
.</ac:rich-text-body></ac:structured-macro>'
FILE_INPUT: "index.html,111183157,gitlab-ci-templates" FILE_INPUT: "index.html,111183157,gitlab-ci-templates"
before_script:
- generate --type html
- generate --type pdf
#.generate-document:
# extends: .pages-template
# stage: generate-docs
# variables:
# DOCUMENT_ROOT: "documentation"
# OUTPUT_DIR: "tmp"
# PAGE_PREFIX: "[CI/CD] - [TMPL] - "
# PAGE_SUFFIX: "bla"
# CREATE_SUB_PAGES: "false"
# CONFLUENCE_SPACE: "RANDI"
# TEXT_GENERATED_HINT: '<ac:structured-macro ac:name="warning"><ac:parameter ac:name="title" /><ac:rich-text-body>This is a generated page, do not edit!</ac:rich-text-body></ac:structured-macro>'
# FILE_INPUT: "index.html,111183157,gitlab-ci-templates"
check_confluence_validity: check_confluence_validity:
extends: .generate-document extends: .generate-document