PGDOCS - sgml linkend using single-quotes
Peter Smith <smithpb2250@gmail.com>
From: Peter Smith <smithpb2250@gmail.com>
To: PostgreSQL Hackers <pgsql-hackers@lists.postgresql.org>
Date: 2023-01-17T22:37:37Z
Lists: pgsql-hackers
Attachments
- v1-0001-Replace-linkend-single-quotes-with-double-quotes.patch (application/octet-stream) patch v1-0001
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
Commits
-
Replace single-quotes with double-quotes in a few SGML attributes.
- 46647cc4b86a 16.0 landed