user management: drop extra newlines and avoid broken monospace quote

asciidoc isn't really made for monospace quoting a single space
characters, so just print it without backticks

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-03-20 16:58:18 +01:00
parent 89e5ecc97a
commit b35285a8d6

View File

@ -403,20 +403,13 @@ in DNs without being escaped properly.
Following characters need escaping: Following characters need escaping:
* Space (` `) * Space ( )
* Comma (`,`) * Comma (`,`)
* Plus sign (`+`) * Plus sign (`+`)
* Double quote (`"`) * Double quote (`"`)
* Forward slashes (`/`) * Forward slashes (`/`)
* Angle brackets (`<>`) * Angle brackets (`<>`)
* Semicolon (`;`) * Semicolon (`;`)
* Equals sign (`=`) * Equals sign (`=`)
To use such characters in DNs, surround the attribute value in double quotes. To use such characters in DNs, surround the attribute value in double quotes.