Update dollar.rkt

This commit is contained in:
Suzanne Dupéron 2020-07-23 22:24:38 +01:00 committed by GitHub
parent a2467d1682
commit 6094bbc572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,9 +35,11 @@
(define-syntax (if-version≥6.12 stx)
(syntax-case stx ()
[(_ . rest)
(if (version>= (version) "6.11.0.900")
#'(begin . rest)
#'(begin))]))
(if (and (not (regexp-match #px"^6\.11\.0\.900$" (version)))
(or (regexp-match #px"^6(\\.([0123456789]|10|11)(\\..*|)|)$" (version))
(regexp-match #px"^[123245]\\..*$" (version))))
#'(begin)
#'(begin . rest))]))
;; 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)