68 lines
2.5 KiB
Lean4
68 lines
2.5 KiB
Lean4
import Book
|
|
import Manual.Meta
|
|
|
|
open Verso.Genre Manual
|
|
open Verso.Genre.Manual
|
|
|
|
-- The static assets (theme, fonts, KaTeX) follow the setup of
|
|
-- Peter Pfaffelhuber's course notes, https://github.com/pfaffelh/leancourse.
|
|
|
|
open Verso.Output.Html in
|
|
def staticCss := {{
|
|
<link rel="stylesheet" href="/static/colors.css" />
|
|
<link rel="stylesheet" href="/static/theme.css" />
|
|
<link rel="stylesheet" href="/static/print.css" />
|
|
<link rel="stylesheet" href="/static/fonts/source-serif/source-serif-text.css" />
|
|
<link rel="stylesheet" href="/static/fonts/source-code-pro/source-code-pro.css" />
|
|
<link rel="stylesheet" href="/static/katex/katex.min.css" />
|
|
}}
|
|
|
|
open Verso.Output.Html in
|
|
def staticJs := {{
|
|
<script src="/static/katex/katex.min.js"></script>
|
|
<script src="/static/math.js"></script>
|
|
<script src="/static/print.js"></script>
|
|
}}
|
|
|
|
def KaTeXLicense : LicenseInfo where
|
|
identifier := "MIT"
|
|
dependency := "KaTeX"
|
|
howUsed := "KaTeX is used to render mathematical notation."
|
|
link := "https://katex.org/"
|
|
text := #[(some "The MIT License", text)]
|
|
where
|
|
text := r#"
|
|
Copyright (c) 2013-2020 Khan Academy and other contributors
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
"#
|
|
|
|
def main :=
|
|
manualMain (%doc Book) (config := config)
|
|
where
|
|
config := {
|
|
extraFiles := [("static", "static")],
|
|
extraHead := #[staticCss, staticJs],
|
|
emitTeX := false,
|
|
-- Deployt wird nur die Multi-Page-Ausgabe; die
|
|
-- Single-Page-Ausgabe wäre doppelte Generierungsarbeit.
|
|
emitHtmlSingle := .no,
|
|
emitHtmlMulti := .immediately,
|
|
}
|