mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
19 lines
364 B
JSON
19 lines
364 B
JSON
["html", ["p", "Valid nesting:"],
|
|
["p", ["strong", ["a", {
|
|
"href": "url"
|
|
},
|
|
"Link"]]],
|
|
["p", ["a", {
|
|
"href": "url"
|
|
},
|
|
["strong", "Link"]]],
|
|
["p", ["strong", ["a", {
|
|
"href": "url"
|
|
},
|
|
["strong", "Link"]]]],
|
|
["p", "Invalid nesting:"],
|
|
["p", ["a", {
|
|
"href": "url"
|
|
},
|
|
"[Link](url)"]]]
|