2022-01-03 17:22:12 +00:00
|
|
|
import DocGen4.Output.Template
|
|
|
|
|
|
|
|
namespace DocGen4
|
|
|
|
namespace Output
|
|
|
|
|
|
|
|
open scoped DocGen4.Jsx
|
|
|
|
|
|
|
|
def ctorToHtml (i : NameInfo) : HtmlM Html := do
|
2022-01-09 13:07:50 +00:00
|
|
|
let shortName := i.name.components'.head!.toString
|
|
|
|
let name := i.name.toString
|
|
|
|
return <li «class»="constructor" id={name}>{shortName} : [←infoFormatToHtml i.type]</li>
|
2022-01-03 17:22:12 +00:00
|
|
|
|
2022-01-20 13:51:24 +00:00
|
|
|
def inductiveToHtml (i : InductiveInfo) : HtmlM (Array Html) :=
|
|
|
|
return #[<ul "class"="constructors">[← i.ctors.toArray.mapM ctorToHtml]</ul>]
|
2022-01-03 17:22:12 +00:00
|
|
|
|
|
|
|
end Output
|
|
|
|
end DocGen4
|