From 0018063ac3de22b4682d491241dee6d9a665109b Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Tue, 21 Oct 2025 13:59:38 +0200 Subject: [PATCH v3 4/4] featurematrix: Use Markdown for description links A few links in the description texts were not using Markdown syntax for links rendering them as text rather than actual html links. Fix by wrapping all links in []() syntax. Author: Daniel Gustafsson Discussion: https://postgr.es/m/0781CAB9-187C-42C6-BB66-F82F66591F92@yesql.se --- data/featurematrix.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/data/featurematrix.yaml b/data/featurematrix.yaml index a5bbd8be..7bd4aca2 100644 --- a/data/featurematrix.yaml +++ b/data/featurematrix.yaml @@ -531,15 +531,17 @@ featurematrix: - name: CREATE STATISTICS - multicolumn versions: '10': 'Yes' - description: "CREATE STATISTICS provides the ability to collect statistics over\ + description: "[CREATE STATISTICS](https://www.postgresql.org/docs/current/sql-createstatistics.html)\ + \ provides the ability to collect statistics over\ \ multiple columns, which can be used by the optimizer to generate better query\ - \ plans.\r\n\r\nhttps://www.postgresql.org/docs/current/sql-createstatistics.html" + \ plans." - name: CREATE STATISTICS - "OR" and "IN/ANY" statistics versions: '13': 'Yes' description: Extended statistics can help the query planner generate better plans for queries that have "OR" clauses as well as "IN/ANY" lookups over lists. For - more information, please see https://www.postgresql.org/docs/current/planner-stats.html#PLANNER-STATS-EXTENDED + more information, please see + [https://www.postgresql.org/docs/current/planner-stats.html#PLANNER-STATS-EXTENDED](https://www.postgresql.org/docs/current/planner-stats.html#PLANNER-STATS-EXTENDED) - name: Cross datatype hashing support versions: '8.3': 'Yes' @@ -1020,7 +1022,7 @@ featurematrix: versions: '12': 'Yes' description: "Page checksums can be enabled or disabled in an offline PostgreSQL\ - \ cluster via the pg_checksums command:\r\n\r\nhttps://www.postgresql.org/docs/current/app-pgchecksums.html" + \ cluster via the [pg_checksums command](https://www.postgresql.org/docs/current/app-pgchecksums.html)" - name: Generic WAL facility versions: '9.6': 'Yes' @@ -1229,7 +1231,7 @@ featurematrix: versions: '12': 'Yes' description: "Support for client and server-side connection encryption when using\ - \ GSSAPI for authentication.\r\n\r\nhttps://www.postgresql.org/docs/current/gssapi-auth.html" + \ [GSSAPI for authentication](https://www.postgresql.org/docs/current/gssapi-auth.html)" - name: GSSAPI support versions: '8.3': 'Yes' @@ -1251,7 +1253,7 @@ featurematrix: versions: '12': 'Yes' description: "LDAP servers with DNS SRV can be discovered if PostgreSQL is built\ - \ with OpenLDAP\r\n\r\nhttps://www.postgresql.org/docs/current/auth-ldap.html" + \ with [OpenLDAP](https://www.postgresql.org/docs/current/auth-ldap.html)" - name: Multifactor authentication via valid client SSL/TLS certificate versions: '12': 'Yes' -- 2.39.3 (Apple Git-146)