0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-04-07 11:25:23 +02:00
hamki a8a1873b27
fix: correct HTML nesting structure in TOC rendering
Fix invalid HTML structure where <ul> was directly nested inside <ul>.
According to HTML specification, nested <ul> elements must be wrapped
in <li> elements.

Before: <ul><ul>...</ul></ul>
After:  <ul><li><ul>...</ul></li></ul>
2026-01-26 17:27:10 +08:00
..
2026-01-24 05:11:49 +00:00
2025-12-04 19:47:23 +01:00
2025-09-13 18:01:00 +00:00
2026-01-24 05:11:49 +00:00
2026-01-24 11:30:47 +00:00