(manual-page
(form '(show-table rows))
(title "show-table")
(description "Presents the table, in terms of rows")
(parameter "row" "a list of elements")
(pre-condition "Must be placed before the begin-notes clause")
(misc "Internally, sets the variable lecture-id")
(result "returns an HTML string")
) |
| | A hypothetical manual page clause. Before we present the clauses of the manual page
we want to ensure, that they appear in a particular order, say title, form, description,
pre-condition, result, and misc. In this example we will illustrate how to obtain such an ordering
in an elegant manner.
|