mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
Escape {}'s so that AsciiDoc does the right thing; fixes elinks.conf(5)
This commit is contained in:
parent
c992a0860c
commit
66e9ae4957
@ -17,7 +17,7 @@
|
||||
.el .ne 3
|
||||
.IP "\\$1" \\$2
|
||||
..
|
||||
.TH "ELINKS.CONF" 5 "ELinks configuration file" "2006-01-12" "ELinks configuration file"
|
||||
.TH "ELINKS.CONF" 5 "ELinks configuration file" "2006-01-14" "ELinks configuration file"
|
||||
.SH NAME
|
||||
elinks.conf \- ELinks configuration file
|
||||
.SH "SYNOPSIS"
|
||||
@ -742,7 +742,7 @@ Prevent overwriting the local files:
|
||||
0: is files will silently be overwritten
|
||||
.TP
|
||||
\(bu
|
||||
|
||||
1: is add a suffix \&.{number} (for example '\&.1') to the name
|
||||
.TP
|
||||
\(bu
|
||||
2: is ask the user
|
||||
|
@ -105,6 +105,7 @@ do
|
||||
fi
|
||||
|
||||
line=`echo "$line" | sed -e "s/[ ]*(DISABLED)//"`
|
||||
line=`echo "$line" | sed 's/\([{}]\)/\\\\\1/g'`
|
||||
number=
|
||||
if test -n "$parse_int_option";
|
||||
then
|
||||
|
Loading…
x
Reference in New Issue
Block a user