Skip to content

Commit b6d5a61

Browse files
committed
lower priority
1 parent dafa189 commit b6d5a61

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

docs/Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[deps]
2+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
23
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
DocumenterVitepress = "4710194d-e776-4893-9690-8d956a29c365"
44
DocumenterCitations = "daee34ce-89f3-4625-b898-19384cb65244"
55
DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656"
6+
DocumenterVitepress = "4710194d-e776-4893-9690-8d956a29c365"
67

78
[sources]
8-
DocumenterVitepress = { path = ".." }
9+
DocumenterVitepress = {path = ".."}

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ using Documenter
22
using DocumenterVitepress
33
using DocumenterCitations
44
using DocumenterInterLinks
5+
using DataFrames
56

67
# Handle DocumenterCitations integration - if you're running this, then you don't need anything here!!
78
documenter_citations_dir = dirname(dirname(pathof(DocumenterCitations)))

docs/src/manual/markdown-examples.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,12 @@ You can also use fenced code blocks with the `math` tag for equations!
475475
```math
476476
\nabla^2 \Phi = \rho
477477
```
478+
## DataFrame
479+
480+
```@example
481+
using DataFrames
482+
DataFrame(A=1:3, B=5:7, fixed=1)
483+
```
478484

479485
## [Latex Symbols $\Lambda_\theta$ and $\bf Z$](@id latex_symbols_in_headings)
480486

src/writer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,9 +685,9 @@ element. Priority is in ascending order, i.e., 1 has more priority than 0.
685685
"""
686686
function mime_priority end
687687
mime_priority(::MIME"text/plain") = 0.0
688+
mime_priority(::MIME"text/latex") = 0.5
688689
mime_priority(::MIME"text/markdown") = 1.0
689690
mime_priority(::MIME"text/html") = 2.0
690-
mime_priority(::MIME"text/latex") = 2.5
691691
mime_priority(::MIME"image/svg+xml") = 3.0
692692
mime_priority(::MIME"image/png") = 4.0
693693
mime_priority(::MIME"image/webp") = 5.0

0 commit comments

Comments
 (0)