hyper-literate/pkgs/scribble-pkgs/scribble-html-lib/scribble/html/main.rkt
Matthew Flatt 19ea3a7194 split "scribble-html-lib" package out of "scribble-lib" package
original commit: 0ad3a6a7f6c897b4fe7d3d2dfdceb3a8831e293a
2014-02-07 22:36:01 -07:00

18 lines
498 B
Racket

#lang racket/base
(require "xml.rkt" "html.rkt" "resource.rkt"
;; includes all of the scribble/text utilities
scribble/text)
(provide (all-from-out "xml.rkt" "html.rkt" "resource.rkt" scribble/text)
(rename-out [top #%top]))
(require (for-syntax racket/base))
(define-syntax (top stx)
(syntax-case stx ()
[(_ . x)
(let ([x* (syntax-e #'x)])
(if (and (symbol? x*) (regexp-match? #rx":$" (symbol->string x*)))
#''x
#'(#%top . x)))]))