commit: 3d16b1e4ad1ec151916d4e1ce78596cafe6dbca1
Author: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 26 00:30:21 2019 +0000
Commit: Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Dec 26 00:30:21 2019 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=3d16b1e4
bin/build_search_documents.py: recurse down <ul/> and <li/>
Signed-off-by: Göktürk Yüksek <gokturk <AT> gentoo.org>
bin/build_search_documents.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/build_search_documents.py b/bin/build_search_documents.py
index 37b6af9..d6b75ff 100755
--- a/bin/build_search_documents.py
+++ b/bin/build_search_documents.py
@@ -77,7 +77,7 @@ def process_node(documents: list, node: ET.Element, name:
str, url: str) -> None
for child in node:
process_node(documents, child, name, url)
- elif node.tag in ['body', 'guide']:
+ elif node.tag in ['body', 'guide', 'li', 'ul']:
for child in node:
process_node(documents, child, name, url)
elif node.tag in ['p', 'important', 'note', 'warning']: