1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-04 05:17:43 +03:00

tools/make-man-index: fix purpose text that contains tags

(cherry picked from commit f331733645)
(cherry picked from commit 946e4c43bb)
(cherry picked from commit 31c85925a9)
This commit is contained in:
Haochen Tong 2020-08-16 03:28:46 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent da1eb548fb
commit 5c35bcf329

View File

@ -55,7 +55,8 @@ def make_index(pages):
check_id(p, t)
section = t.find('./refmeta/manvolnum').text
refname = t.find('./refnamediv/refname').text
purpose = ' '.join(t.find('./refnamediv/refpurpose').text.split())
purpose_text = ' '.join(t.find('./refnamediv/refpurpose').itertext())
purpose = ' '.join(purpose_text.split())
for f in t.findall('./refnamediv/refname'):
infos = (f.text, section, purpose, refname)
index[f.text[0].upper()].append(infos)