
A demo document (linked from the Scribble manual) demonstrates how to trigger each style class and what it looks like with the default and manual styles. original commit: 5e0182029fea2d79e22d515305654a79a881e6d3
11 lines
238 B
Racket
11 lines
238 B
Racket
#lang racket/base
|
|
(require "demo.scrbl"
|
|
scribble/core)
|
|
|
|
(define renamed-doc
|
|
(struct-copy part doc
|
|
[title-content
|
|
(cons "S1 " (part-title-content doc))]))
|
|
|
|
(provide (rename-out [renamed-doc doc]))
|