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.
typesetting/quad/quadwriter/main.rkt

18 lines
599 B
Racket

5 years ago
#lang debug racket/base
5 years ago
(require "core.rkt")
(provide (all-from-out "core.rkt"))
5 years ago
5 years ago
(module docmod racket/base
(define doc 'just-for-label)
(provide doc))
(require (for-label 'docmod))
(provide (for-label doc)) ; stub for scribble labels
5 years ago
(module reader racket/base
(require "lang-helper.rkt")
5 years ago
(provide (rename-out [rs read-syntax]) get-info)
4 years ago
(define get-info get-info-rackety)
5 years ago
(define rs (make-read-syntax 'quadwriter/lang
5 years ago
(λ (path ip)
(for/list ([tok (in-port read ip)])
5 years ago
tok)))))