Fix list formatting

This commit is contained in:
Daniel McKnight 2025-01-30 21:34:55 -08:00
parent 53895b6f65
commit 8ccdde5cb1
2 changed files with 5 additions and 1 deletions

View file

@ -25,7 +25,7 @@ def _get_content_from_file(file_name: str) -> str:
def render_tab(tab_name: str):
file_name = _tab_to_content.get(tab_name, _error_page)
ui.markdown(_get_content_from_file(file_name))
ui.markdown(_get_content_from_file(file_name), extras=['cuddled-lists', 'fenced-code-blocks', 'tables'])
def render_header() -> ui.tab_panels: