Added support for tex2svg #10
No reviewers
Labels
No Label
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: suzanne.soy/scribble-math#10
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This adds (and documents) support for using
tex2svg
, from the node packagemathjax-node-cli
, to statically render math to SVG in the HTML backend.Coverage increased (+2.3%) to 66.85% when pulling
f6b388b462
on wilbowma:master into1793123c88
on jsmaniac:master.Sorry for the delayed review and thanks a lot for the patch!
Use version-case to enable tex2svg on Racket 6.12 and above (previous versions lack
xexpr-property
).@ -11,2 +11,3 @@
"mathjax-convert-unicode.rkt"
racket/list)
racket/list
(only-in xml cdata)
@ -303,0 +359,4 @@
(define ($$-tex2svg strs)
(elem #:style (style #f
(list
(xexpr-property
version-case
is not compatible with some older Racket versions (6.1), using a hand-made macro.@ -26,0 +37,4 @@
#'(begin)
#'(begin . rest))]))
(if-version≥6.12
@ -303,2 +364,4 @@
(cdata #f #f "")))))))
(define $-html-handler (make-parameter $-katex))
(define $$-html-handler (make-parameter $$-katex))
@ -26,3 +44,4 @@
current-tex2svg-path))
;; KaTeX does not work well with the HTML 4.01 Transitional loose DTD,
;; so we define a style modifier which replaces the prefix for HTML rendering.
(define (with-html5 doc-style)