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.
pollen/main-preproc-imports.rkt

16 lines
489 B
Racket

#lang racket/base
;; 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 pollen/top
(only-in pollen/readability ->list)
(only-in pollen/tools trim)
(only-in pollen/predicates whitespace?))
(provide (all-from-out
pollen/top
pollen/readability
pollen/tools
pollen/predicates))