Commit Graph

1897 Commits

Author SHA1 Message Date
Greg Hendershott
77b1b267b5 Fix bug with pound signs used to mark sections.
Also update tests/scribble/markdown-docs files accordingly.

original commit: faeba879e292414dd6d5d9e38d4a08b26e63cceb
2012-12-19 19:32:00 -07:00
Greg Hendershott
624b8ef7e4 Render Scribble margin-note as Markdown block-quote.
More precisely, do this for nested flows with the "refcontent" style.

For instance this Scribble:

    @margin-note{Note: This is a note. Let's make it long enough that the
    markdown output will have to line-wrap, to make sure the > mark starts
    each line properly.}

Will render as this Markdown:

    > Note: This is a note. Let's make it long enough that the markdown output
    > will have to line-wrap, to make sure the > mark starts each line
    > properly.

A site like GitHub.com will render this in a block-quote style
suitable for notes:

> Note: This is a note. Let's make it long enough that the markdown output
> will have to line-wrap, to make sure the > mark starts each line
> properly.

original commit: a3800cdc94d5f0c1b361d6e3ead6c1ebceb66288
2012-12-19 19:31:15 -07:00
Matthew Flatt
042f013e13 scribble: encode URLs in 'unreserved mode
original commit: 130c989888e3ac596fc5c5ac73c3493fd3bb924c
2012-12-17 07:09:27 -07:00
Matthew Flatt
4f1eae99b6 raco setup: fix problem with doc index database
When a tag is serializable but not `write'--`read' invariant,
then it needs to be serialized and deserialized.

Also, clarify and check in `tag?' that a tag should be
serializable.

original commit: 6eef00a31287fd88e1c93139dc5b6c1ab97f6da8
2012-12-13 15:45:48 -07:00
Danny Yoo
8d8e2ea112 Add separate section to avoid conflict at scribble time.
original commit: f374cb184d67bb9073ccfbca408aeadc8f2a96ba
2012-12-13 13:00:06 -07:00
Danny Yoo
5b72f34f76 Add scribble/doclang2 with keyword support for customization, and documentation.
original commit: db280d0941d25904d01b5d49ab880218fc759cfa
2012-12-13 12:50:27 -07:00
Greg Hendershott
98e3fa52d8 Render italic and bold in Markdown.
Scribble => Markdown
  @bold{text}    **text**
@italic{text}     _text_

original commit: 00a5bf63b1819f324ea41b91ce8ee288e1dc7ff5
2012-12-12 20:58:44 -07:00
Greg Hendershott
cdc89f9685 Render @hyperlink in Markdown.
Render Scribble like

    @hyperlink["url" "content"]

as Markdown like

    [content](url)

Note that this only works for `@hyperlink`. The motivation is to
preserve content the author has explicitly written. (Previously,
`markdown-render.rkt` was discarding this; `text-render.rkt` still
does so.)

This does _not_ attempt to handle everything that `html-render.rkt`
would automatically generate and render as `<a>`. It simply can't --
things like hotlinked Racket keywords in code blocks simply won't work
in Markdown.

original commit: dbffc840a93ceb142c59df4a533ced0b41b8e4fa
2012-12-11 12:40:54 -07:00
Matthew Flatt
3af3acb27f fix comments
I had it all backwards: DrRacket went from "increment" to Greek
capital delta (which makes a lot more sense).

original commit: 490a474e0e4b92af8956cab13d885349053a3973
2012-12-10 10:27:44 -07:00
Matthew Flatt
4fadca633f scribble: render "incremement" and some other chars for Latex/PDF
This change was prompted by the change to DrRacket's "\Delta"
to produce the Unicode "increment" character.

original commit: fc112ccd4627f0b7413ba17a81d050bb840a79b3
2012-12-10 10:20:32 -07:00
Greg Hendershott
51d487bc1b Add a Markdown rendering mode to Scribble.
Uses "Github flavored markdown". Specifically, code blocks are opened
using ```scheme so that Github will lex and format them as Scheme code
rather than generic monospace.

Note: I would have used ```racket, but we are still waiting for the
pygments.rb project to pull again from pygments-main -- to which I
contributed a Racket lexer back in August. After pygments.rb pulls,
can update this to use ```racket instead.

original commit: 6aa6dc0400f4fed688e6f5b5278da2e34d82ad88
2012-12-09 15:17:36 -07:00
David Van Horn
cd18c13bf9 Change latex render units from px (pdflatex specific) to bp (tex).
The px unit is a pdflatex specific adjustable unit that is 1 bp (big
point = 1/72in) by default.  This commit changes the latex renderer to
use bp which is a standard TeX unit equivalent to the default px
value.  This change allows .tex files generated by scribble to work
with other latex engines such as xelatex.

http://nwalsh.com/tex/texhelp/Plain.html#dimensions
http://tex.stackexchange.com/questions/41370/what-are-the-possible-dimensions-sizes-units-latex-understands

Here is a small test of using scribble and xelatex:

$ cat try.scrbl
@(require scriblib/figure redex/reduction-semantics redex/pict)
@(define-language L)
@(render-term L (term 1))

$ scribble --latex try.scrbl ; xelatex try

original commit: 0dfcf634ed29a9d6e9d99ea7bcd02121abd24a7b
2012-12-07 06:53:45 -06:00
Matthew Flatt
0836269713 scribble HTML: no extra breaking at the end of an identifier
original commit: bd16f1e302ad3d3fa7a47a8739a33c1eef56969e
2012-11-29 07:18:30 -07:00
Sam Tobin-Hochstadt
a0619711b3 Switch to use almost-standard DOCTYPE for Scribble.
Also switches scribble search trampoline to standard DOCTYPE.

Scribble's HTML output currently relies on the quirks-mode
box model for layout of the many tables used in rendering.
However, Scribble doesn't need the rest of the changes in
browser quirks modes, so we choose a DOCTYPE that just
changes the box model.

It's non-obvious how to replicated this formatting with CSS
in standard-mode rendering.  Probably a better long term
solution is to move away from table-based layout.

See further discussion on GitHub pull request 158 here:
  https://github.com/plt/racket/pull/158

original commit: d6b0dfcd0451d3816bfe1e331a275ef2792fbb88
2012-11-29 07:06:52 -07:00
Robby Findler
4f8f97c58f improve the 'method' syntax error so it gives a hint which argument is which
original commit: e7c622214254aa111361de11f22ff77f24f8e7f8
2012-11-28 13:12:28 -06:00
Asumu Takikawa
7a4767a341 Fix nav separator for Opera
Commit 8653bc6792b614c69b7d0aab7e329591735a0dad caused
the doc navigation to render oddly on Opera due to how
it handles &nbsp;. This commit retains the spacing
for text browsers, but fixes the navigation on Opera.

original commit: 3e81924f848731abda7415d89b4db0ada6ecb308
2012-11-27 18:03:40 -05:00
Matthew Flatt
84cef2a69a adjust some comments to further clarify
original commit: 36bfae9497a4e86aa1264726b66a43afdda0948c
2012-11-27 08:07:27 -07:00
Samuel Bronson
5a45287255 scribble/html-render: clarify mangling of entities: &mdash; &lang; &rang;
original commit: 3ee6248daa13ac4293480778ff7726e962e58e41
2012-11-27 08:04:42 -07:00
Samuel Bronson
fa69afbe71 scribble: Rename attribute pltdoc -> data-pltdoc, which is valid in HTML5.
(pltdoc isn't valid in any version of HTML.)

original commit: 5a216cc4ce2b789f4f6cd6c7f1dd4d44099fb325
2012-11-27 07:55:43 -07:00
Samuel Bronson
b647bf3ad8 Typo fix in content-type: text-html -> text/html
original commit: a66fa77e2e4e3d45aa65404a642b4d3a1fc7683a
2012-11-27 07:55:36 -07:00
Samuel Bronson
61454baac0 scribble/html-render: comment nits
original commit: e157041497046471cbd4bcb3e65259380d997fea
2012-11-27 07:55:23 -07:00
Samuel Bronson
066db6a0b4 scribble/html-render: Add missing sep-element for non-CSS browsers
original commit: 8653bc6792b614c69b7d0aab7e329591735a0dad
2012-11-27 07:55:16 -07:00
Samuel Bronson
b033e80e4e scribble/html-render: Fix typo in error message
original commit: 11df3f9b2022ddeabf376735b345c8bff0bdfebe
2012-11-27 07:55:08 -07:00
Samuel Bronson
99f66dda80 scribble/racket.css: Avoid excessive line-height in some cases
(In particular, when the default line-height for "monospace" is smaller than for the main font.)

original commit: 45bdaa131d61e722fe99d4551e7a97fab2586911
2012-11-27 07:54:05 -07:00
Asumu Takikawa
446dc48686 Index raco scribble command
Relevant to PR 12956

original commit: 8c91decc8a22d371ac472ce956cc407490f8f116
2012-11-26 17:52:43 -05:00
Matthew Flatt
e6d3862627 scribble latex: work around `\href{...#...}{...}' as a macro argument
The `math' document build was failing because `\marginpar' does not
like `\href{...#...}{...}' as an argument.

original commit: 24f358a5d7afca40fcf734af94c2c94a80a817dc
2012-11-25 06:24:51 -07:00
Matthew Flatt
f2c9297253 raco setup: move doc dependency and duplicate checking to database
This change makes document building --- and specially incremental
document building --- more scalable. The global duplicate-definition
check is handled by a database query, for example.

original commit: 9888fac99e32131a6e848f30c40024abb893a9b9
2012-11-23 20:07:49 -07:00
Matthew Flatt
b5865f2f79 break cross-reference info for document into pieces
For example, the cross-reference information for the
Reference is now broken into about 16 pieces, so that
resolving a cross-reference into the Reference doesn't
require loading all cross-reference information for
the Reference.

Every document is split into two pieces, so that the title
of a document is roughly in its own piece. That way,
re-building the page of all installed documentation can be more
scalable (after some further changes).

original commit: a73dc502242d5a61efe526ebb19fc2588f30372a
2012-11-23 18:44:51 -07:00
Matthew Flatt
f761ec10ce serialize bluebox tables
Typically, the bluebox table includes keys that have interned parts,
so serialization can save space both on disk and in memory when the
bluebox information is reloaded.

original commit: 693ff33bfc9e660ac898e262cbefca6a5adee522
2012-11-23 18:44:51 -07:00
Matthew Flatt
280f5e966a raco setup: build database mapping doc tags to "out.sxref"s
The `xref' produced by `setup/xref' uses the database to delay
loading "out.sxref"s, which cuts 64-bit DrRacket's initial
footprint by around 50MB (i.e., about 20%).

original commit: 8c1b5db81553b54b35e753441efd0465426707a3
2012-11-23 18:44:50 -07:00
Vincent St-Amour
8193c3e1ec Fix citation disabiguation when authors differ.
original commit: 29cfc48c5e9361fa1608a315f0558311e416a0d2
2012-11-19 17:35:07 -05:00
Matthew Flatt
8ebc1bdfbd make figure target rendering configurable
from Kevin Tew

original commit: c6fc92915d3de5b585eb01ddddf8c60f60664008
2012-11-04 06:38:30 -07:00
Matthew Flatt
8002d98e5d scribble: more control over version formatting
Add "Version" in front of a version name via `.version:before' or
`.versionNoNav:before' and `\SVersionBefore', so that they can
be configured through overriding CSS or Latex macro declarations.

Also, improve the documentation for how the `#:version' argument
of `title' is propagated to a `part' style property.

Closes PR 13227

original commit: a830f77403a1f51de7359c7946b01ef10d401cee
2012-11-02 07:45:57 -06:00
Matthew Flatt
b951c48fca Scribble PDF/Latex: Hangul support
original commit: 008f476210498537dc4e6812b154aadb9cf4e864
2012-11-02 07:45:57 -06:00
Matthew Flatt
e9ed7ce065 Scribble Latex/PDF: use tocstyle only if it's available
original commit: 739aa114044d17019936cd202045eabcd2e5e13c
2012-11-01 09:29:26 -06:00
Robby Findler
7189e553a0 fix apparent type error in the definition of in-plt?
original commit: 54301ad5ede34fc5000e1a0effa342036b9c0ba9
2012-10-27 18:37:59 -05:00
Matthew Flatt
77a57c8535 scribble Latex/PDF: use the `tocstyle' package
Fixes the spacing of section numbers for a section like N.M where
both N and M have two digits.

original commit: c7d3de435f8c817bd7ccbe9c89678af21ec2d253
2012-10-27 09:24:02 -06:00
Asumu Takikawa
798a3983de scribble: add examples for most def* forms
original commit: b56574e4d56d4abc991dee201a93d92dfd613817
2012-10-27 07:01:02 -04:00
Eli Barzilay
18c07b3769 A whole bunch of missing newlines at EOFs (and a few other spaceages).
original commit: cbfb1fdb370244c2cadcf327332f1c643d4588c0
2012-10-19 06:47:24 -04:00
Asumu Takikawa
dc05bce98a Fix typesetting of code:blank in the Scribble docs
original commit: be2115381848d8c0b7b232e393b5ad94f106a387
2012-10-14 07:34:55 -04:00
Samuel Bronson
167fdb8370 Fix a couple of doc typos.
original commit: 88e6e5bcf68fdcfab0327ec947df0f15145f630c
2012-10-10 11:06:40 -04:00
Samuel Bronson
924f38d67d Misc improvements to the doc search JavaScript code
* Stamp "plt-index.js" with the path of its generator.

* Fix most of the "use strict" and js2-mode warnings in scribble's
  JavaScript.

* Some code improvements in the generating code too.

(With some edits by Eli.)

original commit: a624d8de1519a8d69b54aa2f1a08b31d0b03e004
2012-10-10 11:05:25 -04:00
Matthew Flatt
d5a9bdadb8 Scribble Latex: more complete and consistent handling of accented letters
original commit: 6a82c8bb7c2dce32838dd3dbbb68d76930fcb96a
2012-10-10 07:13:05 -06:00
Matthew Flatt
0b1c035661 Scribble: add some macron accents for Latex
Merge to v5.3.1

original commit: de9ccea7f1b11b43c17f34a2c715dcb452a39e2d
2012-10-10 06:49:01 -06:00
Danny Yoo
cbc1398fdf Small typo fix
original commit: 444aaf6eb7bd2e05dd963b69c550a2159935f0b0
2012-10-09 14:00:34 -04:00
Asumu Takikawa
223c4bc0db Add examples for tabular in scribble reference
original commit: 7826efcdf5985b3f2870eaaaed3ae160f3e3d310
2012-10-08 23:10:52 -04:00
Manu
32ffcdfa45 Added CSS rules for printing.
original commit: e7db0bdac485a0bc9d749188e00932a2374ec1ff
2012-10-05 11:15:59 -04:00
Matthew Flatt
5084b1a133 scribble: make `linebreak' work more for Latex/PDF rendering
original commit: 683e72e9e39f3e8536f9fc0ba0ad8c6f5aca050a
2012-10-04 06:40:36 -06:00
Samuel Bronson
9eae72a93a scribble/private/manual-form: Implement racketgrammar in terms of racketgrammar*
This is just a refactoring for readability.

original commit: 1dce7e587f2b41f5e10633acbc7c0190f15bd586
2012-10-02 15:06:27 -06:00
Matthew Flatt
abeb37b101 scriblib/autobib: more graceful failure when bib not rendered
original commit: 6a5f73d3d9e4e9570c657f77ca8bf20c3510a2b8
2012-10-01 07:14:46 -06:00