docs: remove wrong claims about body-id
The `body-id` structure is actually only recognized in a main `part`. for other places, use `attributes`.
This commit is contained in:
parent
84607f796c
commit
08d09d672e
|
@ -599,10 +599,6 @@ The currently recognized @tech{style properties} are as follows:
|
||||||
@item{@racket[attributes] structure --- Provides additional HTML
|
@item{@racket[attributes] structure --- Provides additional HTML
|
||||||
attributes for the @tt{<p>}, @tt{<div>}, or alternate tag.}
|
attributes for the @tt{<p>}, @tt{<div>}, or alternate tag.}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML, uses the given string
|
|
||||||
as an @tt{id} attribute of the @tt{<p>}, @tt{<div>}, or
|
|
||||||
alternate tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
||||||
paragraphs}; see @racket[compound-paragraph].}
|
paragraphs}; see @racket[compound-paragraph].}
|
||||||
|
|
||||||
|
@ -658,9 +654,6 @@ The following @tech{style properties} are currently recognized:
|
||||||
@item{@racket[attributes] structure --- Provides additional HTML
|
@item{@racket[attributes] structure --- Provides additional HTML
|
||||||
attributes for the @tt{<table>} tag.}
|
attributes for the @tt{<table>} tag.}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML, uses the given string
|
|
||||||
as an @tt{id} attribute of the @tt{<table>} tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['aux] --- For HTML, include the table in the
|
@item{@indexed-racket['aux] --- For HTML, include the table in the
|
||||||
table-of-contents display for the enclosing part.}
|
table-of-contents display for the enclosing part.}
|
||||||
|
|
||||||
|
@ -707,9 +700,6 @@ The following @tech{style properties} are currently recognized:
|
||||||
@item{@racket[attributes] structure --- Provides additional HTML
|
@item{@racket[attributes] structure --- Provides additional HTML
|
||||||
attributes for the @tt{<ul>} or @tt{<ol>} tag.}
|
attributes for the @tt{<ul>} or @tt{<ol>} tag.}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML, uses the given string
|
|
||||||
as an @tt{id} attribute of the @tt{<ul>} or @tt{<ol>} tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
||||||
paragraphs}; see @racket[compound-paragraph].}
|
paragraphs}; see @racket[compound-paragraph].}
|
||||||
|
|
||||||
|
@ -758,9 +748,6 @@ The following @tech{style properties} are currently recognized:
|
||||||
@item{@racket[attributes] structure --- Provides additional HTML
|
@item{@racket[attributes] structure --- Provides additional HTML
|
||||||
attributes for the @tt{<blockquote>} tag.}
|
attributes for the @tt{<blockquote>} tag.}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML, uses the given string
|
|
||||||
as an @tt{id} attribute of the @tt{<blockquote>} tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
@item{@indexed-racket['never-indents] --- For Latex and @tech{compound
|
||||||
paragraphs}; see @racket[compound-paragraph].}
|
paragraphs}; see @racket[compound-paragraph].}
|
||||||
|
|
||||||
|
@ -811,9 +798,6 @@ for Latex output (see @secref["extra-style"]). The following
|
||||||
@item{@racket[attributes] structure --- Provides additional HTML
|
@item{@racket[attributes] structure --- Provides additional HTML
|
||||||
attributes for the @tt{<p>} or alternate tag.}
|
attributes for the @tt{<p>} or alternate tag.}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML, uses the given string
|
|
||||||
as an @tt{id} attribute of the @tt{<p>} or alternate tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['never-indents] --- For Latex within another
|
@item{@indexed-racket['never-indents] --- For Latex within another
|
||||||
@tech{compound paragraph}; see above.}
|
@tech{compound paragraph}; see above.}
|
||||||
|
|
||||||
|
@ -923,9 +907,6 @@ The following @tech{style properties} are currently recognized:
|
||||||
@item{@racket[xexpr-property] structure --- For HTML, supplies literal
|
@item{@racket[xexpr-property] structure --- For HTML, supplies literal
|
||||||
HTML to render before and after @racket[content].}
|
HTML to render before and after @racket[content].}
|
||||||
|
|
||||||
@item{@racket[body-id] structure --- For HTML uses the given
|
|
||||||
string as an @tt{id} attribute of the @tt{<span>} tag.}
|
|
||||||
|
|
||||||
@item{@indexed-racket['aux] --- Intended for use in titles, where the
|
@item{@indexed-racket['aux] --- Intended for use in titles, where the
|
||||||
auxiliary part of the title can be omitted in hyperlinks. See,
|
auxiliary part of the title can be omitted in hyperlinks. See,
|
||||||
for example, @racket[secref].}
|
for example, @racket[secref].}
|
||||||
|
@ -1827,7 +1808,7 @@ Like @racket[css-style-addition], but for a JavaScript file instead of a CSS fil
|
||||||
@defstruct[body-id ([value string?])]{
|
@defstruct[body-id ([value string?])]{
|
||||||
|
|
||||||
Used as a @tech{style property} to associate an @tt{id} attribute with
|
Used as a @tech{style property} to associate an @tt{id} attribute with
|
||||||
an HTML tag.}
|
an HTML tag within a main @racket[part].}
|
||||||
|
|
||||||
|
|
||||||
@defstruct[document-source ([module-path module-path?])]{
|
@defstruct[document-source ([module-path module-path?])]{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user