
The `tt` and `racketfont` functions treat their arguments strangely, applying styles only to immediate strings and symbols. Add `racketplainfont`, which is a non-strange version of `racketfont`. original commit: 737330deb63dcfa01ebf304c3e5c06276a283c81
25 lines
595 B
Racket
25 lines
595 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"))
|
|
(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.6")
|