Re: [PATCH v3 3/3] doc: change configuration variables format

2016-06-06 Thread Matthieu Moy
Tom Russello writes: > As a first step, Is this your second first step? ;-) As 3rd and 4th first steps, I'd suggest: Format short options properly: perl -pi -e "s/'(-[a-z])'/\`\$1\`/g" *.txt Format long options properly: perl -pi -e "s/'(--[a-z][a-z=<>-]*)'/\`\$1\`/g" *.txt This does not hav

[PATCH v3 3/3] doc: change configuration variables format

2016-06-06 Thread Tom Russello
As a first step, this change configuration variables that where in italic style to monospace font according to the guideline. It was obtained with grep '[[:alpha:]]*\.[[:alpha:]]*::$' config.txt | \ sed -e 's/::$//' -e 's/\././' | \ xargs -iP perl -pi -e "s/\'P\'/\`P\`/