diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-04-07 13:45:25 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-04-07 13:45:25 +0200 |
commit | d772b18d44c209ec4a48ba6e1d86c13445318b81 (patch) | |
tree | ff79d495e123fb7b2eea88ba383ed79108bfa6ca /doc/src | |
parent | 5b186308fbc41d0713fa91426d57a2afe37dd969 (diff) | |
download | postgresql-d772b18d44c209ec4a48ba6e1d86c13445318b81.tar.gz postgresql-d772b18d44c209ec4a48ba6e1d86c13445318b81.zip |
Avoid <substeps> element in man pages
The upstream DocBook manpages stylesheet apparently does not handle
the <substeps> element at all, and so the content comes out
unformatted, which is not useful.
As a workaround, replace <substeps> with a nested <procedure>, which
ends up effectively the same in output.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pgupgrade.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/pgupgrade.sgml b/doc/src/sgml/ref/pgupgrade.sgml index 3fbe141456d..f024c3ef259 100644 --- a/doc/src/sgml/ref/pgupgrade.sgml +++ b/doc/src/sgml/ref/pgupgrade.sgml @@ -499,7 +499,7 @@ pg_upgrade.exe is running. </para> - <substeps> + <procedure> <step> <title>Install the new PostgreSQL binaries on standby servers</title> @@ -624,7 +624,7 @@ rsync --archive --delete --hard-links --size-only --no-inc-recursive /vol1/pg_tb </para> </step> - </substeps> + </procedure> </step> |