Thread
Commits
-
Replace single-quotes with double-quotes in a few SGML attributes.
- 46647cc4b86a 16.0 landed
-
PGDOCS - sgml linkend using single-quotes
Peter Smith <smithpb2250@gmail.com> — 2023-01-17T22:37:37Z
Hi, I happened to notice some examples of SGML linkends that were using single quotes instead of double quotes. It didn't seem to be the conventional style because grepping (from doc/src/sgml folder) showed only a tiny fraction using single quotes. (single-quotes) $ grep --include=*.sgml -rn . -e "linkend='" | wc -l 12 (double-quotes) $ grep --include=*.sgml -rn . -e 'linkend="' | wc -l 5915 ~~ PSA patch that makes them all use double quotes. ------ Kind Regards, Peter Smith. Fujitsu Australia
-
Re: PGDOCS - sgml linkend using single-quotes
Heikki Linnakangas <hlinnaka@iki.fi> — 2023-02-27T08:04:21Z
On 18/01/2023 00:37, Peter Smith wrote: > I happened to notice some examples of SGML linkends that were using > single quotes instead of double quotes. > > It didn't seem to be the conventional style because grepping (from > doc/src/sgml folder) showed only a tiny fraction using single quotes. > > (single-quotes) > $ grep --include=*.sgml -rn . -e "linkend='" | wc -l > 12 > > (double-quotes) > $ grep --include=*.sgml -rn . -e 'linkend="' | wc -l > 5915 > > ~~ > > PSA patch that makes them all use double quotes. There were also a few "id" attributes using single-quotes. Fixed those too, and pushed. Thanks! - Heikki
-
Re: PGDOCS - sgml linkend using single-quotes
Peter Smith <smithpb2250@gmail.com> — 2023-02-27T21:21:38Z
On Mon, Feb 27, 2023 at 7:04 PM Heikki Linnakangas <hlinnaka@iki.fi> wrote: > ... > > There were also a few "id" attributes using single-quotes. Fixed those > too, and pushed. Thanks! > Thankyou for pushing. ------ Kind Regards, Peter Smith. Fujitsu Australia