Working…
This commit is contained in:
@@ -7,6 +7,10 @@ open Verso.Genre.Manual
|
||||
-- The static assets (theme, fonts, KaTeX) follow the setup of
|
||||
-- Peter Pfaffelhuber's course notes, https://github.com/pfaffelh/leancourse.
|
||||
|
||||
-- Kein eigenes KaTeX mehr: Das aktuelle Verso liefert seinen eigenen
|
||||
-- Mathe-Renderer mit (-verso-data/katex/…); eine zweite Kopie würde
|
||||
-- jede Formel doppelt rendern.
|
||||
|
||||
open Verso.Output.Html in
|
||||
def staticCss := {{
|
||||
<link rel="stylesheet" href="/static/colors.css" />
|
||||
@@ -14,45 +18,13 @@ def staticCss := {{
|
||||
<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
|
||||
|
||||
Reference in New Issue
Block a user