]> source.dussan.org Git - gitea.git/commitdiff
Fix doc example for asciidoc (#9072)
authorguillep2k <18600385+guillep2k@users.noreply.github.com>
Wed, 20 Nov 2019 06:17:14 +0000 (03:17 -0300)
committertechknowlogick <techknowlogick@gitea.io>
Wed, 20 Nov 2019 06:17:14 +0000 (01:17 -0500)
* Fix doc example for asciidoc

* Update config-cheat-sheet.en-us.md

* Update docs/content/doc/advanced/config-cheat-sheet.en-us.md

Co-Authored-By: Lauris BH <lauris@nix.lv>
docs/content/doc/advanced/config-cheat-sheet.en-us.md

index f56ed34e431e4dfa96daf6496feb32ae4c4375ce..327efb34bd0974fbe942f3b259548d8e6a9a519d 100644 (file)
@@ -558,13 +558,13 @@ Gitea can support Markup using external tools. The example below will add a mark
 
 ```ini
 [markup.asciidoc]
-ENABLED = false
+ENABLED = true
 FILE_EXTENSIONS = .adoc,.asciidoc
 RENDER_COMMAND = "asciidoc --out-file=- -"
 IS_INPUT_FILE = false
 ```
 
-- ENABLED: **false** Enable markup support.
+- ENABLED: **false** Enable markup support; set to **true** to enable this renderer.
 - FILE\_EXTENSIONS: **\<empty\>** List of file extensions that should be rendered by an external
    command. Multiple extentions needs a comma as splitter.
 - RENDER\_COMMAND: External command to render all matching extensions.