You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pollen/scribblings/pollen.scrbl

64 lines
2.8 KiB
Plaintext

11 years ago
#lang scribble/manual
10 years ago
@(require scribble/eval pollen/world (for-label racket (except-in pollen #%module-begin) pollen/world))
11 years ago
10 years ago
@(define my-eval (make-base-eval))
@(my-eval `(require pollen))
11 years ago
10 years ago
@title{Pollen: the book is a program}
10 years ago
@author[(author+email "Matthew Butterick" "mb@mbtype.com")]
10 years ago
Pollen is a publishing system that helps authors create beautiful and functional web-based books. Pollen is a package of tools for writing, designing, programming, testing, and publishing.
10 years ago
I used Pollen to make my book @link["http://practicaltypography.com"]{Butterick's Practical Typography}. If that looks better than the last digital book you encountered, read on.
10 years ago
Pollen is built around two ideas. First, that digital books should be the best books we've ever had. (So far, they're not even close.) Second, that if digital books are software, an author shouldn't think of their book as merely data. The book is a program.
10 years ago
Not that you need to be a programmer to use Pollen. On the contrary, the Pollen language is markup-based, so you can write & edit text naturally. But when you want to automate repetitive tasks, add cross-references, or pull in data from other sources, you can access a full programming language from within the text.
10 years ago
That language is Racket. I chose Racket because while the idea for Pollen had been with me for several years, it simply wasn't possible to build it with other languages. So if it's unfamiliar to you, don't panic. It was unfamiliar to me. Once you see what you can do with Pollen & Racket, you may be persuaded. I was.
10 years ago
Or, if you can find a better digital book-publishing tool, use that. Personally, I'm never going back to the way I used to work.
10 years ago
@section{Installation}
10 years ago
Install Racket, which includes DrRacket.
10 years ago
Install Pollen from the command line:
@verbatim{raco pkg install pollen}
10 years ago
After that, you can update the package from the command line:
@verbatim{raco pkg update pollen}
10 years ago
@section{Pollen source formats}
10 years ago
@defmodulelang[pollen]
10 years ago
This puts Pollen into automatic mode, where the source file is interpreted according to the file extension.
10 years ago
If the file extension is ``@(format ".~a" world:markup-source-ext)'', the source is interpreted as @racket[pollen/markup].
10 years ago
If the file extension is ``@(format ".~a" world:preproc-source-ext)'', the source is interpreted as @racket[pollen/pre] (``pre'' stands for ``preprocessor'').
10 years ago
If the file extension is ``@(format ".~a" world:markdown-source-ext)'', the source is interpreted as @racket[pollen/markdown].
10 years ago
@defmodulelang[pollen/markup]
10 years ago
@defmodulelang[pollen/pre]
10 years ago
@defmodulelang[pollen/markdown]
10 years ago
@section{License & source code}
10 years ago
This module is licensed under the LGPL.
10 years ago
Source repository at @link["http://github.com/mbutterick/pollen"]{http://github.com/mbutterick/pollen}. Suggestions & corrections welcome.