Hi. It's not possible to use single and/or double quotes, since the parser encodes them to htmlentities:
"raw_config": [
{
"line": "# Single and double quote test: \" ' " ' \u0022"
}
]
Then if you enter the container and cat /tmp/caddy.conf, this is what you get:
# Single and double quote test: " ' " ' "
I think that at least \" should be encoded as ".
Could you please fix this in order to be able to escape and write double quotes to the raw_config section? That way we'll be able to use spaces in some config options.
Hi. It's not possible to use single and/or double quotes, since the parser encodes them to htmlentities:
Then if you enter the container and
cat /tmp/caddy.conf
, this is what you get:# Single and double quote test: " ' " ' "
I think that at least
\"
should be encoded as"
. Could you please fix this in order to be able to escape and write double quotes to the raw_config section? That way we'll be able to use spaces in some config options.Thank you