Add doc pages for remaining raco commands

Closes PR 12956
This commit is contained in:
Asumu Takikawa 2012-11-26 15:38:44 -05:00
parent 5e54ff90d4
commit 6a88812de7
5 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#lang scribble/doc
@(require scribble/manual "common.rkt")
@title[#:tag "docs"]{@exec{raco docs}: Documentation Search}
The @exec{raco docs} command searches the documentation for
the given identifiers or search terms.
Command-line flags:
@itemlist[
@item{@Flag{h} or @DFlag{help} --- show help information for this command}
@item{@DFlag{} --- do not treat remaining arguments as switches}
]

View File

@ -0,0 +1,15 @@
#lang scribble/doc
@(require scribble/manual "common.rkt"
(for-label racket/base))
@title[#:tag "expand"]{@exec{raco expand}: Macro Expansion}
The @exec{raco expand} command macro expands the contents of
the given source files. Also see @racket[expand].
Command-line flags:
@itemlist[
@item{@Flag{h} or @DFlag{help} --- show help information for this command}
@item{@DFlag{} --- do not treat remaining arguments as switches}
]

View File

@ -0,0 +1,8 @@
#lang scribble/doc
@(require scribble/manual "common.rkt")
@title[#:tag "pkg"]{@exec{raco pkg}: Planet 2 Package Management}
See @other-manual['(lib "planet2/scribblings/planet2.scrbl")] for
information on the @exec{raco pkg} command, which is used for
managing external code packages with Planet 2.

View File

@ -22,9 +22,13 @@ a typical Racket installation.
@include-section["plt.scrbl"]
@include-section["unpack.scrbl"]
@include-section["planet.scrbl"]
@include-section["pkg.scrbl"]
@include-section["setup.scrbl"]
@include-section["decompile.scrbl"]
@include-section["demod.scrbl"]
@include-section["ctool.scrbl"]
@include-section["test.scrbl"]
@include-section["docs.scrbl"]
@include-section["expand.scrbl"]
@include-section["scribble.scrbl"]
@include-section["command.scrbl"]

View File

@ -0,0 +1,8 @@
#lang scribble/doc
@(require scribble/manual "common.rkt")
@title[#:tag "scribble"]{@exec{raco scribble}: Building Documentation}
See @other-manual['(lib "scribblings/scribble/scribble.scrbl")]
for information on the @exec{raco scribble} command, which is used to
run and render a Scribble document.