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

This commit is contained in:
Haochen Tong 2020-08-16 03:28:46 +02:00 committed by Zbigniew Jędrzejewski-Szmek
parent 209650b720
commit f331733645
1 changed files with 2 additions and 1 deletions

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)