aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/config.scm
blob: 6f156c988169ccaa7ade5e8c708bac0067cbdfe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
(define-module (calp html config)
  :use-module (util)
  :use-module (util config)
  )

(define-public debug (make-parameter #f))
(define-config debug #f
  description: "Places the generated thingy in debug mode"
  post: debug)


;;; NOTE edit mode should preferably depend on login-status of the user
;;; but this works for the time being.
(define-public edit-mode (make-parameter #t))
(define-config edit-mode #t
  description: "Makes the document editable"
  post: edit-mode)