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.
9 lines
265 B
Racket
9 lines
265 B
Racket
9 years ago
|
#lang racket/base
|
||
|
|
||
|
(require pollen/tag)
|
||
|
(provide (all-defined-out))
|
||
|
(define headline (make-default-tag-function 'h2))
|
||
|
(define items (make-default-tag-function 'ul))
|
||
|
(define item (make-default-tag-function 'li 'p))
|
||
|
(define (link url text) `(a [[href ,url]] ,text))
|