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 09:57:09 +0300 |
commit | 635de8365f0299cfa2db24c56abcfccb65d020f0 (patch) | |
tree | 83e8b377aae802c1036817c2dfbb77606815b26f /doc/src/sgml/ref/createlang.sgml | |
parent | 12679b8bc908f941710bed185aa142ad5de539c6 (diff) | |
download | postgresql-635de8365f0299cfa2db24c56abcfccb65d020f0.tar.gz postgresql-635de8365f0299cfa2db24c56abcfccb65d020f0.zip |
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/createlang.sgml')
-rw-r--r-- | doc/src/sgml/ref/createlang.sgml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/createlang.sgml b/doc/src/sgml/ref/createlang.sgml index 5db5e6cd412..e157396de70 100644 --- a/doc/src/sgml/ref/createlang.sgml +++ b/doc/src/sgml/ref/createlang.sgml @@ -25,7 +25,9 @@ PostgreSQL documentation <arg rep="repeat"><replaceable>connection-option</replaceable></arg> <arg choice="plain"><replaceable>langname</replaceable></arg> <arg><replaceable>dbname</replaceable></arg> - <sbr> + </cmdsynopsis> + + <cmdsynopsis> <command>createlang</command> <arg rep="repeat"><replaceable>connection-option</replaceable></arg> <group choice="plain"><arg>--list</arg><arg>-l</arg></group> |