bookshelf-doc/DocGen4/Output/Find.lean

22 lines
390 B
Plaintext
Raw Normal View History

2022-02-13 14:42:15 +00:00
import DocGen4.Output.Template
namespace DocGen4
namespace Output
open scoped DocGen4.Jsx
open Lean
2022-02-20 17:12:49 +00:00
def find : HtmlM Html := do
pure
<html lang="en">
<head>
2022-02-22 04:40:14 +00:00
<link rel="preload" href={s!"{←getRoot}declaration-data.bmp"}/>
2022-02-20 17:12:49 +00:00
<script type="module" async="true" src={s!"./find.js"}></script>
</head>
<body></body>
</html>
2022-02-13 14:42:15 +00:00
end Output
end DocGen4
2022-02-20 17:12:49 +00:00