8000 Update make.jl · SciML/SciMLTutorialsOutput@222711b · GitHub
[go: up one dir, main page]

Skip to content

Commit 222711b

Browse files
Update make.jl
1 parent bfd9863 commit 222711b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

docs/make.jl

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,25 @@ dir = @__DIR__() * "/.."
77

88
include("pages.jl")
99

10+
mathengine = MathJax3(Dict(:loader => Dict("load" => ["[tex]/require", "[tex]/mathtools"]),
11+
:tex => Dict("inlineMath" => [["\$", "\$"], ["\\(", "\\)"]],
12+
"packages" => [
13+
"base",
14+
"ams",
15+
"autoload",
16+
"mathtools",
17+
"require",
18+
])))
19+
1020
makedocs(
1121
sitename="The SciML Tutorials",
1222
authors="Chris Rackauckas",
1323
modules=[SciMLTutorialsOutput],
1424
clean=true, doctest=false,
1525
format=Documenter.HTML(#analytics = "UA-90474609-3",
1626
assets=["assets/favicon.ico"],
17-
canonical="https://tutorials.sciml.ai/stable/"),
27+
canonical="https://tutorials.sciml.ai/stable/",
28+
mathengine),
1829
pages=pages
1930
)
2031

0 commit comments

Comments
 (0)
0