mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-01-20 14:03:39 +03:00
tools/make-man-index: fix purpose text that contains tags
(cherry picked from commit f3317336450e1145b97ae9e38bd626f3d4c88eb8)
This commit is contained in:
parent
dae0586e91
commit
946e4c43bb
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user