feat: html escape docstrings
parent
f9d9875671
commit
074c783259
|
@ -210,11 +210,11 @@ partial def modifyElement (element : Element) : HtmlM Element :=
|
||||||
|
|
||||||
/-- Convert docstring to Html. -/
|
/-- Convert docstring to Html. -/
|
||||||
def docStringToHtml (s : String) : HtmlM (Array Html) := do
|
def docStringToHtml (s : String) : HtmlM (Array Html) := do
|
||||||
let rendered := CMark.renderHtml s
|
let rendered := CMark.renderHtml (Html.escape s)
|
||||||
match manyDocument rendered.mkIterator with
|
match manyDocument rendered.mkIterator with
|
||||||
| Parsec.ParseResult.success _ res =>
|
| Parsec.ParseResult.success _ res =>
|
||||||
res.mapM fun x => do return Html.text <| toString (← modifyElement x)
|
res.mapM fun x => do return Html.text <| toString (← modifyElement x)
|
||||||
| _ => return #[Html.text rendered]
|
| _ => return #[Html.text <| rendered]
|
||||||
|
|
||||||
end Output
|
end Output
|
||||||
end DocGen4
|
end DocGen4
|
||||||
|
|
|
@ -53,10 +53,10 @@ partial def textLength : Html → Nat
|
||||||
|
|
||||||
def escapePairs : Array (String × String) :=
|
def escapePairs : Array (String × String) :=
|
||||||
#[
|
#[
|
||||||
("&", "&"),
|
("&", "&"),
|
||||||
("<", "<"),
|
("<", "<"),
|
||||||
(">", ">"),
|
(">", ">"),
|
||||||
("\"", """)
|
("\"", """)
|
||||||
]
|
]
|
||||||
|
|
||||||
def escape (s : String) : String :=
|
def escape (s : String) : String :=
|
||||||
|
|
Loading…
Reference in New Issue