hyper-literate/scribble-lib/info.rkt
Matthew Flatt 18e467ef9e disable _ prefix handling in racketmodname and other places
In places where module names are typeset, such as `racketmodname`,
there's no way to disable the special treatment of `_` as an
identifier prefix as in `racket`. Even using
`make-element-id-transformer` doesn't work, because the module-name
datum is explcitly disconnected from binding withing `racketmodname`.
2017-04-14 06:52:16 -06:00

27 lines
653 B
Racket

#lang info
(define collection 'multi)
(define deps '("scheme-lib"
"base"
"compatibility-lib"
"scribble-text-lib"
"scribble-html-lib"
"planet-lib" ; used dynamically
"net-lib"
"at-exp-lib"
"draw-lib"
"syntax-color-lib"
"sandbox-lib"
"typed-racket-lib"
))
(define build-deps '("rackunit-lib"))
(define implies '("scribble-html-lib"))
(define pkg-desc "implementation (no documentation) part of \"scribble\"")
(define pkg-authors '(mflatt eli))
(define version "1.21")