Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit21dd8c9

Browse files
quinnjmortenpi
andauthored
Use symbol :display instead of function (#2721)
* Use symbol :display instead of functionI believe these Dict keys are meant to be Symbols rather thanthe `display` function. Caught inhttps://github.com/JuliaIO/JSON.jl/actions/runs/14942383442/job/42145192605?pr=374where JSON.jl will no longer automatically call string on non-string-like Dict keys.* Set version to 1.11.2---------Co-authored-by: Morten Piibeleht <morten.piibeleht@gmail.com>
1 parent92adad9 commit21dd8c9

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

‎CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## Version [v1.11.2] - 2025-05-14
7+
8+
### Fixed
9+
10+
* Fixed minor issue where `display` function was a Dict config key for KaTex vs. `:display` Symbol ([#2721])
11+
612
## Version [v1.11.1] - 2025-05-13
713

814
### Fixed
@@ -1505,6 +1511,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15051511
[v1.10.2]: https://github.com/JuliaDocs/Documenter.jl/releases/tag/v1.10.2
15061512
[v1.11.0]: https://github.com/JuliaDocs/Documenter.jl/releases/tag/v1.11.0
15071513
[v1.11.1]: https://github.com/JuliaDocs/Documenter.jl/releases/tag/v1.11.1
1514+
[v1.11.2]: https://github.com/JuliaDocs/Documenter.jl/releases/tag/v1.11.2
15081515
[#198]: https://github.com/JuliaDocs/Documenter.jl/issues/198
15091516
[#245]: https://github.com/JuliaDocs/Documenter.jl/issues/245
15101517
[#487]: https://github.com/JuliaDocs/Documenter.jl/issues/487
@@ -2067,6 +2074,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
20672074
[#2710]: https://github.com/JuliaDocs/Documenter.jl/issues/2710
20682075
[#2714]: https://github.com/JuliaDocs/Documenter.jl/issues/2714
20692076
[#2717]: https://github.com/JuliaDocs/Documenter.jl/issues/2717
2077+
[#2721]: https://github.com/JuliaDocs/Documenter.jl/issues/2721
20702078
[JuliaLang/julia#36953]: https://github.com/JuliaLang/julia/issues/36953
20712079
[JuliaLang/julia#38054]: https://github.com/JuliaLang/julia/issues/38054
20722080
[JuliaLang/julia#39841]: https://github.com/JuliaLang/julia/issues/39841

‎Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name ="Documenter"
22
uuid ="e30172f5-a6a5-5a46-863b-614d45cd2de4"
3-
version ="1.11.1"
3+
version ="1.11.2"
44

55
[deps]
66
ANSIColoredPrinters ="a4c015fc-c6ff-483c-b24f-f7ea428134e9"

‎src/html/HTMLWriter.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ struct KaTeX <: MathEngine
192192
functionKaTeX(config::Union{Dict, Nothing}=nothing, override=false)
193193
default=Dict(
194194
:delimiters=> [
195-
Dict(:left=>raw"$",:right=>raw"$", display=>false),
196-
Dict(:left=>raw"$$",:right=>raw"$$", display=>true),
197-
Dict(:left=>raw"\[",:right=>raw"\]", display=>true),
195+
Dict(:left=>raw"$",:right=>raw"$",:display=>false),
196+
Dict(:left=>raw"$$",:right=>raw"$$",:display=>true),
197+
Dict(:left=>raw"\[",:right=>raw"\]",:display=>true),
198198
]
199199
)
200200
returnnew((config===nothing)? default: override? config:merge(default, config))

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp