Asciidoc render not working

Hi!
I’m not able to render asciidoc files.
gitea version 1,10.0, Centos7, asciidoc installed and working (tested it on the command line)

Here is my config:
[markup.asciidoc]
ENABLED = true
FILE_EXTENSIONS = .adoc,.asciidoc
RENDER_COMMMAND = “asciidoc --out-file=- -”
IS_INPUT_FILE = false

Cannot find anything in the logs.

Reagrds,
Karin

Hi! Make sure the asciidoc program is in a location accessible from the environment where Gitea’s executable run. Better yet, use the full path to the command. For example (may be different in your system):

[markup.asciidoc]
ENABLED = true
FILE_EXTENSIONS = .adoc,.asciidoc
RENDER_COMMMAND = “/usr/bin/asciidoc --out-file=- -”
IS_INPUT_FILE = false