dlna: Mark flags in docs as code
Otherwise, we get en dashes in the man page, making args more difficult to copy/paste to a command line. Before: Use –addr to specify ... After: Use --addr to specify ...
This commit is contained in:
parent
4e8fda228d
commit
5050c33162
1 changed files with 4 additions and 4 deletions
|
@ -10,14 +10,14 @@ import (
|
||||||
var Help = `
|
var Help = `
|
||||||
### Server options
|
### Server options
|
||||||
|
|
||||||
Use --addr to specify which IP address and port the server should
|
Use ` + "`--addr`" + ` to specify which IP address and port the server should
|
||||||
listen on, eg --addr 1.2.3.4:8000 or --addr :8080 to listen to all
|
listen on, eg ` + "`--addr 1.2.3.4:8000` or `--addr :8080`" + ` to listen to all
|
||||||
IPs.
|
IPs.
|
||||||
|
|
||||||
Use --name to choose the friendly server name, which is by
|
Use ` + "`--name`" + ` to choose the friendly server name, which is by
|
||||||
default "rclone (hostname)".
|
default "rclone (hostname)".
|
||||||
|
|
||||||
Use --log-trace in conjunction with -vv to enable additional debug
|
Use ` + "`--log-trace` in conjunction with `-vv`" + ` to enable additional debug
|
||||||
logging of all UPNP traffic.
|
logging of all UPNP traffic.
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue