aboutsummaryrefslogtreecommitdiff
path: root/src/guile/skribilo/package/eq.scm
diff options
context:
space:
mode:
Diffstat (limited to 'src/guile/skribilo/package/eq.scm')
-rw-r--r--src/guile/skribilo/package/eq.scm15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/guile/skribilo/package/eq.scm b/src/guile/skribilo/package/eq.scm
index 8b4d325..90db17b 100644
--- a/src/guile/skribilo/package/eq.scm
+++ b/src/guile/skribilo/package/eq.scm
@@ -60,6 +60,11 @@
;; native engine.
(make-parameter #f))
+(define-public *use-lout-eq2?*
+ ;; Whether the use the new Lout `eq2' package instead of `eq'.
+ (make-parameter #f))
+
+
(define %operators
'(/ * + - = != ~= < > <= >= sqrt expt sum product script
in notin apply limit combinations set))
@@ -130,6 +135,16 @@ a symbol representing the mathematical operator denoted by @var{m} (e.g.,
((#t) #t)
(else #f)))))
+(define-public (direct-equation-child? m)
+ "Return @code{#t} if @var{m} is a direct child of an @code{eq} markup."
+ (let ((parent (ast-parent m)))
+ (and (is-markup? parent 'eq)
+ (let ((body (markup-body parent)))
+ (or (eq? body m)
+ (and (list? body)
+ (memq m body)))))))
+
+
;;;
;;; Operator precedence.