Skip to content

Commit a687ccc

Browse files
committed
first call, change log
1 parent 0061231 commit a687ccc

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v0.2.6 - 2025-06-08
4+
- Lowers MIME priority for LaTeX rendering.
5+
36
## v0.2.5 - 2025-05-29
47
- Add LaTeX rendering support on outputs from Documenter blocks.
58
- Fix a bug with `@ansi` blocks in draft mode.

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 LaTeXStrings
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: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -478,21 +478,19 @@ You can also use fenced code blocks with the `math` tag for equations!
478478

479479
## LaTeXStrings
480480

481-
```@example latexstring
482-
using LaTeXStrings
483-
```
484-
485481
:::tabs
486482

487483
== text string
488484

489-
```@example latexstring
485+
```@example
486+
using LaTeXStrings
490487
L"an equation: $\alpha^2$"
491488
```
492489

493490
== text/latex display
494491

495-
```@example latexstring
492+
```@example
493+
using LaTeXStrings
496494
LaTeXString("an equation: \$\\alpha^2\$")
497495
```
498496

0 commit comments

Comments
 (0)