feature/embedded-server-config #1

Manually merged
krageon merged 1 commit from krageon/zer.ooo-web:feature/embedded-server-config into master 2019-08-03 19:43:03 +00:00

View file

@ -22,10 +22,13 @@ cipher AES-256-CBC
comp-lzo
<ca>
{{ ca }}</ca>
{{ ca|trim }}
</ca>
<cert>
{{ cert }}</cert>
{{ cert|trim }}
</cert>
Outdated
Review

please to end on next line

please to end on next line

Keys have a return after them. This way it looks exactly as the end user expects when the template is filled. This is to my mind the superior option.

Keys have a return after them. This way it looks *exactly* as the end user expects when the template is filled. This is to my mind the superior option.
Outdated
Review

I would rather have you use the following in that case

<key>
{{ key|trim }}
</key>
I would rather have you use the following in that case ```twig <key> {{ key|trim }} </key> ```

Good point, it's fixed

Good point, it's fixed
<key>
{{ key }}</key>
{{ key|trim }}
</key>