The case where (car a) is a string wasn't handled correctly. The error was provoked by sicp-manual.scrbl.
original commit: 9a4f6b1a194cda0b841bac36df18fa4b822bf469
The `tt` and `racketfont` functions treat their arguments strangely,
applying styles only to immediate strings and symbols.
Add `racketplainfont`, which is a non-strange version of `racketfont`.
original commit: 737330deb63dcfa01ebf304c3e5c06276a283c81
When text is literally a quote (ASCII 39) or backquote (ASCII 96),
then render it in a way that prevents LaTeX from converting to
curly variants.
original commit: 69d64e2893cca5e143609494547b64b7f90b7228
Now that some entries have changes over multiple versions, a forward
sort order seems better than reverse to me.
original commit: a67ecb96ab18a54dff75f06a737c492ba92943a4
Use 'pdf-bytes+bounds8, 'png-bytes+bounds8, etc. to convert images
for Latex/PDF and HTML output. The new conversions particularly
help with picts that draw text, since the baseline of the text
can be handled properly in HTML output.
The new conversion also helps hide the difference between a bounding
box and the "inked" area of a pict, since picts normally ink only
slightly outside the bounding box, and the default for pict conversion
pads the image with a few pixels/units in each direction.
Also, add a `++convert <fmt>` command-line option to select a
preferred target for image conversions. (This preference can be
overridden by the existing `render-convertible-as` style property
for HTML rendering.)
original commit: 05760a12f690b7efcd58e65ee2b723a05133e229
This adds a new back-end pipeline for generating pdf to
scribble, with the hope that included picts (e.g., those
generated by Redex) will look better when viewed with
on-screen pdf viewers
Current problem: the descent adjustment is messed up,
as can be seen by this example program's output:
#lang scribble/base
@(require redex/pict
pict
redex/reduction-semantics)
@title{}
@(define-language L
(e ::= (e e) x (λ (x) e)))
@(render-language L)
ff@(text "f" '(italic . roman) 20)ff
x@(text "x")y@(text "y")
original commit: 5280395f8802d21764ef074540421441cb8ac999
Normalize strings to composed form before splitting a
string into characters to handle individually.
original commit: d970d5aaead2bfbae0651b583f79e6ac719c7d39
Use Javascript's decodeURIComponent() instead of unescape().
This repair makes searching for Unicode characters work from DrRacket
(e.g., via F1).
original commit: d1525edf62a1db2ade3c64dd17eb81bff87a4112
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
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 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
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