
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
13 lines
303 B
Racket
13 lines
303 B
Racket
#lang racket/base
|
|
(require "demo.scrbl"
|
|
scribble/core
|
|
scribble/manual)
|
|
|
|
(define renamed-doc
|
|
(struct-copy part doc
|
|
[style manual-doc-style]
|
|
[title-content
|
|
(cons "M2 " (part-title-content doc))]))
|
|
|
|
(provide (rename-out [renamed-doc doc]))
|