0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-04-08 02:33:36 +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 11:30:47 +00:00
2026-01-24 11:30:47 +00:00