-
Notifications
You must be signed in to change notification settings - Fork 499
Closed
Labels
Description
Hey, I am having issues getting the LaTeX from the docstrings to display. For example, following the Julia documentation documentation, I use the following docstring:
doc"""
HeatProblem
Wraps the data that define a 2D linear heat equation problem:
`` $$ u_t = Δu + f(x,t) $$ ``
(truncated for simplicity). In my documentation I use {docs} HeatProblem which transforms into Markdown code like
HeatProblem
Wraps the data that define a 2D linear heat equation problem:
`` $ (generic function with 34 methods) u_t = Δu + f(x,t) $ (generic function with 34 methods) ``
And using
deploydocs(deps = Deps.pip("mkdocs", "python-markdown-math"),
repo = "github.com/ChrisRackauckas/DifferentialEquations.jl.git",
julia = "0.4.5",
osname = "linux")
to build I get results that can be seen at the documentation here. Is there way to get the LaTeX to render?