diff options
author | arjen@fred.bitbike.com <> | 2002-04-26 20:05:46 +1000 |
---|---|---|
committer | arjen@fred.bitbike.com <> | 2002-04-26 20:05:46 +1000 |
commit | 0a6e773ca3f75a78a983ee06e265d75605ef8c2c (patch) | |
tree | 46da5eac9fe4293ebc32769ea199d0dfa11a0f8b /Docs/Support/docbook-fixup.pl | |
parent | 4488353ed32b3e2cb19ee410f85bea4196633d1a (diff) | |
download | mariadb-git-0a6e773ca3f75a78a983ee06e265d75605ef8c2c.tar.gz |
Fixups in manual texi source and XML/Docbook output scripts.
Diffstat (limited to 'Docs/Support/docbook-fixup.pl')
-rwxr-xr-x | Docs/Support/docbook-fixup.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Docs/Support/docbook-fixup.pl b/Docs/Support/docbook-fixup.pl index ba2e9b3779d..6f74e81942a 100755 --- a/Docs/Support/docbook-fixup.pl +++ b/Docs/Support/docbook-fixup.pl @@ -77,6 +77,11 @@ msg ('Adding "see " to (XREFs) that used to be (@pxref)...'); $data =~ s{([([,;])(\s*)<xref } {$1$2see <xref }gs; +# arjen 2002-04-26 +msg ("Removing separate target titles from LINKs and make them XREFs..."); +$data =~ s{<link (linkend=.+?)>.+?</link>} + {<xref $1 />}gs; + msg ("Making first row in table THEAD..."); $data =~ s{( *)<tbody>(\s*<row>.+?</row>)} {$1<thead>$2\n$1</thead>\n$1<tbody>}gs; |