Re: documentation structure
jian he <jian.universality@gmail.com>
From: jian he <jian.universality@gmail.com>
To: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Cc: Andres Freund <andres@anarazel.de>, Tom Lane <tgl@sss.pgh.pa.us>, Andrew Dunstan <andrew@dunslane.net>, Robert Haas <robertmhaas@gmail.com>, "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2024-04-19T11:54:43Z
Lists: pgsql-hackers
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
docs: Consistently use <optional> to indicate optional parameters
- 0d829703363b 18.0 landed
-
docs: Consolidate into new "WAL for Extensions" chapter.
- 09d9800e5282 17.0 landed
-
freespace: Don't return blocks past the end of the main fork.
- 935829743151 17.0 cited
-
docs: Merge separate chapters on built-in index AMs into one.
- fe8eaa54420c 17.0 landed
-
docs: Demote "Monitoring Disk Usage" from chapter to section.
- f470b5c67924 17.0 landed
-
doc: move system views section to its own chapter
- 64d364bb39cb 16.0 cited
On Wed, Apr 17, 2024 at 7:07 PM Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> wrote: > > > > It'd also be quite useful if clients could render more of the documentation > > for functions. People are used to language servers providing full > > documentation for functions etc... > > A more user-friendly version of \df+ (maybe spelled \hf, for symmetry > with \h for commands?) would certainly be nice. > I think `\hf` is useful. otherwise people first need google to find out the function html page, then need Ctrl + F to locate specific function entry. for \hf we may need to offer a doc url link. but currently many functions are unlinkable in the doc. Also one section can have many sections. I guess just linking directly to a nearby position in a html page should be fine. We can also add a url for functions decorated as underscore like mysql (https://dev.mysql.com/doc/refman/8.3/en/string-functions.html#function_concat). I am not sure it is an elegant solution.