Questions tagged [scribble]

Scribble is a domain specific language used for documentation in the Racket eco-system.

Scribble is a syntax and a collection of tools for creating prose documents—papers, books, library documentation, etc.—in HTML or PDF (via Latex) form. More generally, the Scribble syntax is useful for programs that are rich in textual content, whether the it is prose to be typeset or any other form of text to be generated programmatically.

Scribble Introductory Video

Scribble: Closing the Book on Ad Hoc Documentation Tools

49 questions
0
votes
1 answer

Reading unknown symbols as strings in at-exp languages

I have created a module which provides various functions, including #%module-begin. I want to use it with at-exp syntax, which I can do using the following #lang line: #lang at-exp s-exp "my-library.rkt" However, this does not read unknown symbols…
Richard Parsons
  • 277
  • 1
  • 9
0
votes
1 answer

Making evaluators with user-defined procedures

So I'm working with DrRacket and since I'm making a manual via #lang scribble for my procedures I'd like to put actual examples of my procedures running using @interactions So far I've got this part: #lang scribble/manual @(require (for-label…
David Merinos
  • 1,195
  • 1
  • 14
  • 36
0
votes
1 answer

Racket/Scribble dynamic pdf generation

Hello all I am trying to dynamically build pdf files based on switches in a global defines file. In file global_defines.rkt i have #lang racket/base (provide (all-defined-out)) (define alpha #f) (define beta #t) (define gamma #f) in file…
0
votes
1 answer

Ruby gui Scribble - How to get it

I read the article below and would like to try scribble in Ruby but the only source i can find is on svn which i don't have or use. Here is the link http://nex-3.com/posts/3-scribble Is this a gem and how can i install it ? Does it run on…
peter
  • 41,770
  • 5
  • 64
  • 108
1 2 3
4