Skip to content

Commit b890e45

Browse files
authored
Fix broken equations in docs (#991)
Switches back to MathJax. Closes #988.
1 parent b123627 commit b890e45

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/make.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ using Documenter, MathOptInterface
22

33
makedocs(
44
sitename = "MathOptInterface",
5-
# See https://github.com/JuliaDocs/Documenter.jl/issues/868
6-
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true"),
5+
format = Documenter.HTML(
6+
# See https://github.com/JuliaDocs/Documenter.jl/issues/868
7+
prettyurls = get(ENV, "CI", nothing) == "true",
8+
mathengine = Documenter.MathJax()
9+
),
710
# See https://github.com/JuliaOpt/JuMP.jl/issues/1576
811
strict = true,
912
pages = [

0 commit comments

Comments
 (0)