refactor: move siteRoot to separate file
parent
b9c5109aaf
commit
a89cf7d7a4
|
@ -80,13 +80,14 @@ def htmlOutput (result : AnalyzerResult) (root : String) : IO Unit := do
|
||||||
declList := declList.push obj
|
declList := declList.push obj
|
||||||
let json := Json.arr declList
|
let json := Json.arr declList
|
||||||
|
|
||||||
FS.writeFile (basePath / "searchable_data.json") json.compress
|
FS.writeFile (basePath / "searchable-data.json") json.compress
|
||||||
FS.writeFile (basePath / "index.html") indexHtml.toString
|
FS.writeFile (basePath / "index.html") indexHtml.toString
|
||||||
FS.writeFile (basePath / "style.css") styleCss
|
FS.writeFile (basePath / "style.css") styleCss
|
||||||
FS.writeFile (basePath / "404.html") notFoundHtml.toString
|
FS.writeFile (basePath / "404.html") notFoundHtml.toString
|
||||||
FS.writeFile (basePath / "nav.js") navJs
|
FS.writeFile (basePath / "nav.js") navJs
|
||||||
FS.writeFile (basePath / "search.js") searchJs
|
FS.writeFile (basePath / "search.js") searchJs
|
||||||
FS.writeFile (basePath / "mathjax-config.js") mathjaxConfigJs
|
FS.writeFile (basePath / "mathjax-config.js") mathjaxConfigJs
|
||||||
|
FS.writeFile (basePath / "site-root.js") s!"siteRoot = \"{config.root}\"";
|
||||||
for (module, content) in result.moduleInfo.toArray do
|
for (module, content) in result.moduleInfo.toArray do
|
||||||
let moduleHtml := ReaderT.run (moduleToHtml content) config
|
let moduleHtml := ReaderT.run (moduleToHtml content) config
|
||||||
let path := moduleNameToFile basePath module
|
let path := moduleNameToFile basePath module
|
||||||
|
|
|
@ -18,7 +18,7 @@ def baseHtmlArray (title : String) (site : Array Html) : HtmlM Html := do
|
||||||
<link rel="stylesheet" href={s!"{←getRoot}style.css"}/>
|
<link rel="stylesheet" href={s!"{←getRoot}style.css"}/>
|
||||||
<link rel="stylesheet" href={s!"{←getRoot}pygments.css"}/>
|
<link rel="stylesheet" href={s!"{←getRoot}pygments.css"}/>
|
||||||
<link rel="shortcut icon" href={s!"{←getRoot}favicon.ico"}/>
|
<link rel="shortcut icon" href={s!"{←getRoot}favicon.ico"}/>
|
||||||
<link rel="prefetch" href={s!"{←getRoot}searchable_data.json"}/>
|
<link rel="prefetch" href={s!"{←getRoot}searchable-data.json"}/>
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
|
@ -44,9 +44,7 @@ def baseHtmlArray (title : String) (site : Array Html) : HtmlM Html := do
|
||||||
{←navbar}
|
{←navbar}
|
||||||
|
|
||||||
-- Lean in JS in HTML in Lean...very meta
|
-- Lean in JS in HTML in Lean...very meta
|
||||||
<script>
|
<script src={s!"{←getRoot}site-root.js"}></script>
|
||||||
siteRoot = "{←getRoot}";
|
|
||||||
</script>
|
|
||||||
|
|
||||||
-- TODO Add more js stuff
|
-- TODO Add more js stuff
|
||||||
<script src={s!"{←getRoot}nav.js"}></script>
|
<script src={s!"{←getRoot}nav.js"}></script>
|
||||||
|
|
|
@ -1,3 +1,12 @@
|
||||||
|
/*
|
||||||
|
* This file is for configing MathJax behavior.
|
||||||
|
* Seehttps://docs.mathjax.org/en/latest/web/configuration.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This configuration is copied from old doc-gen3
|
||||||
|
* https://github.com/leanprover-community/doc-gen
|
||||||
|
*/
|
||||||
MathJax = {
|
MathJax = {
|
||||||
tex: {
|
tex: {
|
||||||
inlineMath: [['$', '$']],
|
inlineMath: [['$', '$']],
|
||||||
|
|
|
@ -106,7 +106,7 @@ if (tse != null) {
|
||||||
// Simple declaration search
|
// Simple declaration search
|
||||||
// -------------------------
|
// -------------------------
|
||||||
|
|
||||||
const declURL = new URL(`${siteRoot}searchable_data.json`, window.location);
|
const declURL = new URL(`${siteRoot}searchable-data.json`, window.location);
|
||||||
const getDecls = (() => {
|
const getDecls = (() => {
|
||||||
let decls;
|
let decls;
|
||||||
return () => {
|
return () => {
|
||||||
|
|
Loading…
Reference in New Issue