mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
doc: Fix DocBook XML validity
The main problem is that DocBook SGML allows indexterm elements just
about everywhere, but DocBook XML is stricter. For example, this common
pattern
<varlistentry>
<indexterm>...</indexterm>
<term>...</term>
...
</varlistentry>
needs to be changed to something like
<varlistentry>
<term>...<indexterm>...</indexterm></term>
...
</varlistentry>
See also bb4eefe7bf
.
There is currently nothing in the build system that enforces that things
stay valid, because that requires additional tools and will receive
separate consideration.
This commit is contained in:
@ -4,6 +4,10 @@ PostgreSQL documentation
|
||||
-->
|
||||
|
||||
<refentry id="app-pgrecvlogical">
|
||||
<indexterm zone="app-pgrecvlogical">
|
||||
<primary>pg_recvlogical</primary>
|
||||
</indexterm>
|
||||
|
||||
<refmeta>
|
||||
<refentrytitle><application>pg_recvlogical</application></refentrytitle>
|
||||
<manvolnum>1</manvolnum>
|
||||
@ -16,10 +20,6 @@ PostgreSQL documentation
|
||||
streams over a walsender connection.</refpurpose>
|
||||
</refnamediv>
|
||||
|
||||
<indexterm zone="app-pgrecvlogical">
|
||||
<primary>pg_recvlogical</primary>
|
||||
</indexterm>
|
||||
|
||||
<refsynopsisdiv>
|
||||
<cmdsynopsis>
|
||||
<command>pg_recvlogical</command>
|
||||
|
Reference in New Issue
Block a user