Re: PGDOCS - sgml linkend using single-quotes
Heikki Linnakangas <hlinnaka@iki.fi>
From: Heikki Linnakangas <hlinnaka@iki.fi>
To: Peter Smith <smithpb2250@gmail.com>,
PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2023-02-27T08:04:21Z
Lists: pgsql-hackers
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
Commits
-
Replace single-quotes with double-quotes in a few SGML attributes.
- 46647cc4b86a 16.0 landed