-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLists.scrbl
34 lines (28 loc) · 1005 Bytes
/
Lists.scrbl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#lang scribble/doc
@(require scribble/html-properties
scribble/latex-properties
scribble/core
scribble/sigplan
scribble/base
scribble/manual
scriblib/autobib
scriblib/footnote
scriblib/figure)
@title{Lists}
See @secref["Blocks" #:doc '(lib "scribblings/scribble/scribble.scrbl")] 'itemlist' in the @hyperlink["file:///usr/share/doc/racket/scribble/base.html#%28part._.Blocks%29"]{Scribble guide}
@literal|{@itemlist}| creates indented bullet points for lists
@codeblock|{
@itemlist[@item{First bullet point}
@item{Second bullet point}]
}|
@itemlist[@item{First bullet point}
@item{Second bullet point}]
@literal|{@itemlist[#:style'ordered}| creates numbered lists
@codeblock|{
@itemlist[#:style'ordered
@item{First bullet point}
@item{Second bullet point}]
}|
@itemlist[#:style'ordered
@item{First bullet point}
@item{Second bullet point}]