2022-01-03 17:22:12 +00:00
|
|
|
import DocGen4.Output.Template
|
2022-02-17 05:47:38 +00:00
|
|
|
import DocGen4.Output.DocString
|
2022-05-19 22:36:43 +00:00
|
|
|
import DocGen4.Process
|
2022-01-03 17:22:12 +00:00
|
|
|
|
|
|
|
namespace DocGen4
|
|
|
|
namespace Output
|
|
|
|
|
|
|
|
open scoped DocGen4.Jsx
|
|
|
|
|
2022-07-21 18:23:27 +00:00
|
|
|
def ctorToHtml (c : Process.NameInfo) : HtmlM Html := do
|
|
|
|
let shortName := c.name.components'.head!.toString
|
|
|
|
let name := c.name.toString
|
|
|
|
if let some doc := c.doc then
|
|
|
|
let renderedDoc ← docStringToHtml doc
|
|
|
|
pure
|
|
|
|
<li class="constructor" id={name}>
|
|
|
|
<div class="inductive_ctor_doc">[renderedDoc]</div>
|
|
|
|
{shortName} : [←infoFormatToHtml c.type]
|
|
|
|
</li>
|
|
|
|
else
|
|
|
|
pure
|
|
|
|
<li class="constructor" id={name}>
|
|
|
|
{shortName} : [←infoFormatToHtml c.type]
|
|
|
|
</li>
|
2022-01-03 17:22:12 +00:00
|
|
|
|
2022-05-19 22:36:43 +00:00
|
|
|
def inductiveToHtml (i : Process.InductiveInfo) : HtmlM (Array Html) := do
|
2022-05-19 15:16:40 +00:00
|
|
|
let constructorsHtml := <ul class="constructors">[← i.ctors.toArray.mapM ctorToHtml]</ul>
|
2022-02-18 03:28:44 +00:00
|
|
|
pure #[constructorsHtml]
|
2022-01-03 17:22:12 +00:00
|
|
|
|
|
|
|
end Output
|
|
|
|
end DocGen4
|