import DocGen4.Output.Template import DocGen4.Output.DocString namespace DocGen4 namespace Output open scoped DocGen4.Jsx open Lean Widget def equationToHtml (c : CodeWithInfos) : HtmlM Html := do pure
  • [←infoFormatToHtml c]
  • def equationsToHtml (i : DefinitionInfo) : HtmlM (Option Html) := do if let some eqs := i.equations then let equationsHtml ← eqs.mapM equationToHtml pure
    Equations
    else pure none def definitionToHtml (i : DefinitionInfo) : HtmlM (Array Html) := do let equationsHtml? ← equationsToHtml i let docstringHtml? ← i.doc.mapM docStringToHtml match equationsHtml?, docstringHtml? with | some e, some d => pure (#[e] ++ d) | some e, none => pure #[e] | none , some d => pure d | none , none => pure #[] end Output end DocGen4