-
Notifications
You must be signed in to change notification settings - Fork 1
/
frog.rkt
27 lines (24 loc) · 936 Bytes
/
frog.rkt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#lang frog/config
;; Called early when Frog launches. Use this to set parameters defined
;; in frog/params.
(define/contract (init)
(-> any)
(current-scheme/host "https://www-old.cs.utah.edu/plt/")
(current-title "Utah PLT Blog")
(current-author "Utah PLT"))
;; Called once per post and non-post page, on the contents.
(define/contract (enhance-body xs)
(-> (listof xexpr/c) (listof xexpr/c))
;; Here we pass the xexprs through a series of functions.
(~> xs
(syntax-highlight #:python-executable (if (eq? (system-type) 'windows)
"python.exe"
"python")
#:line-numbers? #t
#:css-class "source")
(auto-embed-tweets #:parents? #t)
(add-racket-doc-links #:code? #t #:prose? #f)))
;; Called from `raco frog --clean`.
(define/contract (clean)
(-> any)
(void))