diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2010-09-25 09:57:09 +0300 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2010-09-25 16:47:58 +0300 |
| commit | f27860dba39f3467bdcac6f91a8ca798b009f079 (patch) | |
| tree | 2a494bc980a04d9d1e2dcb3b560678b1d8026100 /doc/src/sgml/ref/reindexdb.sgml | |
| parent | 4afd557901448a2c9c6d407e8e174bd2c0f3a28f (diff) | |
Fix man page markup for <cmdsynopsis> with multiple variants
Command synopses using <cmdsynopsis> with multiple variants previously used
<sbr> to break lines between variants. The new man page toolchain introduced
in 9.0 makes a mess out of that, and that markup was probably wrong all along,
because <sbr> is supposed to break lines within a synopsis, not between them.
So fix that by using multiple <cmdsynopsis> elements inside <refsynopsisdiv>.
backpatched to 9.0
Diffstat (limited to 'doc/src/sgml/ref/reindexdb.sgml')
| -rw-r--r-- | doc/src/sgml/ref/reindexdb.sgml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/reindexdb.sgml b/doc/src/sgml/ref/reindexdb.sgml index dcc34fb61a9..05ba8b66e16 100644 --- a/doc/src/sgml/ref/reindexdb.sgml +++ b/doc/src/sgml/ref/reindexdb.sgml @@ -26,11 +26,15 @@ PostgreSQL documentation <arg>--table | -t <replaceable>table</replaceable> </arg> <arg>--index | -i <replaceable>index</replaceable> </arg> <arg><replaceable>dbname</replaceable></arg> - <sbr> + </cmdsynopsis> + + <cmdsynopsis> <command>reindexdb</command> <arg rep="repeat"><replaceable>connection-option</replaceable></arg> <arg>--all | -a</arg> - <sbr> + </cmdsynopsis> + + <cmdsynopsis> <command>reindexdb</command> <arg rep="repeat"><replaceable>connection-option</replaceable></arg> <arg>--system | -s</arg> |
