The project-specific configuration of the @PLUGIN@ plugin is done in the @PLUGIN@.config
file in the refs/meta/config
branch of the project.
[web] indexFile = Documentation/README.md
The documentation links in web UI will link to this file. Inherited from the parent project if not specified. Default: `README.md`
The global formatter configuration can be overridden per project. Child projects inherit the formatter configuration from the parent projects. Configuring any parameter for a formatter overrides the complete inherited/global formatter configuration.
If set to `*` all file extensions are handled by this formatter. Multiple extensions may be specified for a formatter. Overrides the [globally configured file extensions](#formatterExt) for this formatter.
Multiple mime types may be specified for a formatter. Overrides the [globally configured mime types](#formatterMimeType) for this formatter.
Multiple prefixes may be specified for a formatter. Overrides the [globally configured prefixes](#formatterPrefix) for this formatter.
Overrides the [global configuration of `includeToc`](#formatterIncludeToc) for this formatter. Supported for the following formatters: `ASCIIDOCTOR` Default: `true`
If `false` the default CSS is completely replaced by the project-specific CSS. Overrides the [global configuration of `appendCss`](#formatterAppendCss) for this formatter. Supported for the following formatters: `ASCIIDOCTOR`, `MARKDOWN` Default: `true` (project-specific CSS is appended to the default CSS)
If several formatters can handle a file, the formatter with the higher priority is taken. If formatters have the same priority it is undefined which formatter is used. Overrides the [global configured priority](#formatterPrio) for this formatter. Default: `0`
For some formatters a custom CSS file for the rendering can be provided in the refs/meta/config
branch of the project:
ASCIIDOCTOR
: @PLUGIN@/asciidoctor.css
MARKDOWN
: @PLUGIN@/markdown.css
Custom CSS files are NOT inherited from parent projects.
The global configuration of the @PLUGIN@ plugin is done in the $site_path/etc/@PLUGIN@.config
file.
The plugin contains an init step that creates the initial plugin configuration.
[formatter "ASCIIDOCTOR"] ext = adoc [formatter "MARKDOWN"] mimeType = text/x-markdown [formatter "PLAIN_TEXT"] mimeType = text/plain
Supported formatters:
ASCIIDOCTOR
MARKDOWN
PLAIN_TEXT
If set to `*` all file extensions are handled by this formatter. Multiple extensions may be specified for a formatter. Can be overridden on [project-level](#ext).
Multiple mime types may be specified for a formatter. Can be overridden on [project-level](#mimeType).
Multiple prefixes may be specified for a formatter. Can be overridden on [project-level](#prefix).
If `false` inline HTML blocks as well as inline HTML tags are suppressed. Both will be accepted in the input but not be contained in the output. When this option is changed the `xdocs-x_doc_resources` cache must be flushed. **WARNING:** Allowing HTML for user-provided input is a security risk, e.g. code for XSS attacks may be contained in the HTML. *CANNOT* be overridden on project-level. Supported for the following formatters: `ASCIIDOCTOR`, `MARKDOWN` Default: `false`
When a formatter is disabled the `xdocs-x_doc_resources` cache must be flushed. *CANNOT* be overridden on project-level. Default: `true`
Can be overridden on [project-level](#includeToc). Supported for the following formatters: `ASCIIDOCTOR` Default: `true`
If `false` the default CSS is completely replaced by the project-specific CSS. Can be overridden on [project-level](#appendCss). Supported for the following formatters: `ASCIIDOCTOR`, `MARKDOWN` Default: `true` (project-specific CSS is appended to the default CSS)
If several formatters can handle a file, the formatter with the higher priority is taken. If formatters have the same priority it is undefined which formatter is used. Can be overridden on [project-level](#prio). Default: `0`
The RAW formatter is used when the `raw` URL parameter is appended to the project documentation URL. When this option is changed the `xdocs-x_doc_resources` cache must be flushed. *CANNOT* be overridden on project-level. Default: `PLAIN_TEXT`
Gerrit administrators can override the built-in default CSS by providing CSS files in <review-site>/data/@PLUGIN@/css/
:
ASCIIDOCTOR
: asciidoctor.css
MARKDOWN
: markdown.css