diff options
author | Peter Eisentraut | 2022-04-07 11:45:25 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-04-07 11:45:25 +0000 |
commit | d772b18d44c209ec4a48ba6e1d86c13445318b81 (patch) | |
tree | ff79d495e123fb7b2eea88ba383ed79108bfa6ca | |
parent | 5b186308fbc41d0713fa91426d57a2afe37dd969 (diff) |
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.
-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 3fbe141456..f024c3ef25 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> |