From: Vladimír Vondruš Date: Mon, 26 Nov 2018 11:49:13 +0000 (+0100) Subject: doxygen: properly bubble up search keywords from lists as well. X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~cjwatson/git?a=commitdiff_plain;h=d42ca94a81cbd6e28e899b12680fab14da6536e9;p=blog.git doxygen: properly bubble up search keywords from lists as well. --- diff --git a/doxygen/dox2html5.py b/doxygen/dox2html5.py index a6f35ec3..08dfc773 100755 --- a/doxygen/dox2html5.py +++ b/doxygen/dox2html5.py @@ -857,6 +857,10 @@ def parse_desc_internal(state: State, element: ET.Element, immediate_parent: ET. # descriptions, bubble them up. THIS IS FUCKEN UNBELIEVABLE. merge_parsed_subsections(parsed) + # Bubble up keywords as well + if parsed.search_keywords: + out.search_keywords += parsed.search_keywords + out.parsed += ''.format(tag) elif i.tag == 'table':