-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrog.rkt
25 lines (22 loc) · 792 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
#lang frog/config
;; Called early when Frog launches. Use this to set parameters defined
;; in frog/params.
(define/contract (init)
(-> any)
(current-scheme/host "http://pookleblinky.github.io")
(current-title "Mistake Not")
(current-author "Pookleblinky"))
;; 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 "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))