This change avoids the problem of a bad "index.html" on a doucment
rendering error, where the presense of an "index.html" would count
as successes on a retry.
original commit: e4e8a69e06863b423f4b7b716b369b002c2deea1
This configuration option is a better way to redirect documentation
access (at a place like NEU) than patching "search.rkt".
original commit: a8105dc0e34e5571ec9ecdb47635e409e29882c5
At mbutterick's recommendation:
it's causing a strange display problem in TOC listings when the
cursor is hovering over the link (namely, the underlined space
dangling from the right edge)
original commit: cc26a86cb1975bdbb1ed3f816b6a50decfdec510
The new arguments greatly simplify adding properties such as alignment
and (HTML) background colors to table cells. For example, to make a
table with 'right alignment for the left-hand column, 'center alignment
for the second column, and 'left alignment for all remaining columns:
(tabular cells
#:sep (hspace 1)
#:column-properties '(right center left))
Also, make `color-property` and `background-color-property` recognized
as table-cell style properties.
Finally, implement horizontal alignment for text rendering.
original commit: 316fc0dbf5e26061245d815c992cc54d9738aa79
Keep track of the target document name (i.e., the name of the
directory that will contain the target document) for a cross
reference, when known. This identification enables a simpler dynamic
resolution of a hyperlink in almost all cases, istead of requiring
a search for an arbitrary corss-reference key.
Indirect links still need a mapping of cross-reference keys
to document locations, but the mapping can be pruned to just
section and module-name keys.
This change cuts a generated "local-redirect.js" for the main
distribution to 1/8 of its size.
original commit: a956918adb1ffe69b7cefea00f3c9d594f58734a
This changed make `(require scribble/manual)` work in an executable,
although actually rendering documents requires the "scribble"
collection.
original commit: 9ca0aa52250c18dd05c2a19bea654ca770aecf0c
The `outputable/c` contract is currently just an alias for
`any/c`, however, because checking the contract seems to be
too expensive.
original commit: 416b680d742afafe7f5632ca94cb36bac25534b8
The old layout used column spans that created ugly space around parentheses
for some combinations of field-name and keyword-modifier lengths. The new
layot avoids the problem by breaking the keyword modifiers into their
own table.
original commit: a391556faa2d2b43f39b2d48a139085704a865ec
If the defined identifier plus contract doesn't fit on a single
line, put them on separate lines.
original commit: 77392cd02752d868e1c8363779ada62b9431df7f
A demo document (linked from the Scribble manual) demonstrates how
to trigger each style class and what it looks like with the default
and manual styles.
original commit: 5e0182029fea2d79e22d515305654a79a881e6d3
The 'keep-style avoids imposing the Racket manual style on a
document, while 'no-search omits the search box. The 'omit-start
section is like 'omit, but the document is still indexed and
available for cross-references.
Also, recognize a 'prefixable tag shape so that the set of tags
hat support prefixing is extensible.
original commit: c4f4ba4ca38c05e8beff1546a8df69617c25821c
When source-location information isn't available, usually due to macros
in compiled modules, make `racketblock` fall back to `racket`-like
spacing. This improvement is visible, for example, in the documentation
for functions like `recycle-icon`.
Using `quote-syntax/srcloc` in a macro is probably a better solution,
because that will preserve the original layout including line breaks,
but the default-spacing fallback seems like an improvement over
unreadable output.
original commit: 86df55a877feca51680aaab9b955ea9220229c14
The 'png@2x-bytes variant is like 'png-bytes, but where the decoded
bytes are intended to be scaled by 1/2.
Consumers:
- DrRacket's print handler
- Scribble's HTML renderer
Producers:
- `bitmap%`s where the scaling factor is 2
- picts
Examples: Quick docs, docs for `images/icons/misc`, DrRacket interactions
for results of `images/icons/misc` functions.
original commit: eda4f357463fc8803726881f57cdd1cec6822660