Fix web list not wrapped in <ul> tag

This commit is contained in:
Kovid Goyal 2025-08-03 05:40:14 +05:30
parent 119213a6c1
commit 7852077ca2
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ def process_web_list(li_node):
li_html += f'<li>{parse_textjson(li["textJson"])}</li>'
else:
li_html += f'<li>{li.get("text", "")}</li>'
return li_html
return '<ul>' + li_html + '</ul>'
def process_info_box(bx):

View File

@ -31,7 +31,7 @@ def process_web_list(li_node):
li_html += f'<li>{parse_textjson(li["textJson"])}</li>'
else:
li_html += f'<li>{li.get("text", "")}</li>'
return li_html
return '<ul>' + li_html + '</ul>'
def process_info_box(bx):