You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
515 B
Racket
14 lines
515 B
Racket
11 years ago
|
#lang racket
|
||
|
|
||
|
;; These are separated from main-preproc.rkt as a performance improvement:
|
||
|
;; so they can be imported into the render.rkt namespace
|
||
|
;; and cached for the benefit of the render eval function.
|
||
|
|
||
|
(require (only-in (planet mb/pollen/readability) ->list)
|
||
|
(only-in (planet mb/pollen/tools) trim)
|
||
|
(only-in (planet mb/pollen/predicates) whitespace?))
|
||
|
|
||
|
(provide (all-from-out
|
||
|
(planet mb/pollen/readability)
|
||
|
(planet mb/pollen/tools)
|
||
|
(planet mb/pollen/predicates)))
|