scribble-enhanced/pkgs/scribble-pkgs/scribble-test/tests/scribble/docs/verbatim.scrbl
Matthew Flatt 4431dff8d9 scribble/base: extend verbatim to accept non-string arguments
original commit: 0f439667bfbbfbf1c78ea63dec17534b3280a295
2013-09-06 20:02:05 -06:00

40 lines
512 B
Racket

#lang scribble/base
@verbatim{One fish.}
@verbatim{
One fish.
Two fish.
}
@verbatim[#:indent 3]{
One fish.
Two fish.
}
@verbatim[#:indent 3]{
One fish.
Two fish.
@bold{Red} fish.
}
@verbatim[#:indent 3]|{
One fish.
Two fish.
@bold{Red} fish.
}|
@verbatim[#:indent 3]|{
One fish.
Two fish.
|@bold{Red} fish.
}|
@verbatim[@bold{One fish.} "\nTwo fish."]
@verbatim["One fish\n" @bold{Two fish.}]
@verbatim[@bold{One fish.}]
@verbatim["One fish\n" @bold{Two fish.} "\nRed fish."]