1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-27 02:56:18 -04:00

elinks.conf.5: quoting corrections

In set and unset commands, the <option> must not be quoted.  In the
sample protocol.user.mailto.unix setting, the internal quotes were
using some manpage syntax, resulting in incorrect HTML output.
This commit is contained in:
Kalle Olavi Niemitalo 2008-03-06 10:23:21 +02:00 committed by Kalle Olavi Niemitalo
parent 1086a7c561
commit 857c27e8b6

View File

@ -9,8 +9,8 @@ elinks.conf - ELinks configuration file
SYNOPSIS
--------
[verse]
set "<option>" = <value>
unset "<option>"
set <option> = <value>
unset <option>
bind "<keymap>" "<key>" = "<action>"
include "<file>"
@ -52,7 +52,7 @@ Some sample settings:
# Default document codepage.
set document.codepage.assume = "ISO-8859-1"
# User defined protocol handlers
set protocol.user.mailto.unix = "mutt %h -s \e\*(lq%s\e\*(rq"
set protocol.user.mailto.unix = "mutt %h -s \"%s\""
OPTIONS
-------