1 "pollen.rkt"
We can write a "pollen.rkt" file in any #lang. Most commonly, you’ll choose #lang racket/base. #lang racket is a tiny bit more convenient because it loads more libraries by default. But as a result, it can be slightly slower to load. So racket/base is the more virtuous habit.
This particular "pollen.rkt", however, is written in #lang scribble/lp2, which is the literate-programming variant of Racket’s Scribble documentation language (which is also the basis of Pollen). #lang scribble/lp2 is like a text-based version of #lang racket/base. The “literate programming” angle is that we can mix documentation and source code in one file. Probably not the option you’d choose for your own project. But in this teaching project, it’s the right tool for the job.
In this documentation, chunks of source code look like this:
There’s nothing special about the chunk name — it’s just a label that #lang scribble/lp2 will use to snap the code together at the end. The result is that if you require this file normally, you’ll get the usual functions and values; but if you run it with Scribble, it turns into the documentation you see here.
Aside from that wrinkle, all the code shown here is standard racket/base, and can be copied & adapted for your own "pollen.rkt" files written in #lang racket/base (or #lang racket).
1.1 What is "pollen.rkt" for?
The "pollen.rkt" source file is the main source of functions and values for the source files in a Pollen project. Everything provided from a "pollen.rkt" is automatically available to #lang pollen source files in the same directory or subdirectories (unless superseded by another "pollen.rkt" within a subdirectory).
For more, see Using the "pollen.rkt" file in the main Pollen docs.
1.2 Imports
Though require declarations can live anywhere at the top layer of a source file, it’s typical to consolidate them at the top.
If we were using #lang racket, these next libraries would already be imported. But we aren’t, so they’re not.
(require (for-syntax racket/base racket/syntax) racket/list racket/format racket/string racket/function racket/contract racket/match racket/system)
Other libraries we’ll be using. sugar and txexpr are utility libraries installed with Pollen. hyphenate is separate, but can be installed easily:
> raco pkg install hyphenate |
"pricing-table.rkt" is another custom Racket file for this project. It’s up to you whether you store all your functions and definitions in "pollen.rkt", or spread them over different source files. Regardless of where you store them, "pollen.rkt" remains the central gathering point for everything you want to propagate to the #lang pollen source files in your project.
If you end up making reusable functions, you can share them between Pollen projects (and with other Racket users, if you want) by moving them into a package. For more, see Creating Packages.
(require pollen/decode pollen/tag sugar txexpr hyphenate pollen/private/whitespace pollen/unstable/typography "../pricing-table.rkt")
1.3 Exports
Note that all-defined-out would only export the definitions that are created in this file. To make imported definitions available too, we need to re-export them explicitly with all-from-out.
(provide (all-defined-out) (all-from-out "../pricing-table.rkt"))
1.4 Definitions
1.4.1 Values
Definitions in a "pollen.rkt" can be functions or values. Because they get propagated to other Pollen source files, they’re almost like global definitions. As usual with global definitions, you should use them when you need them, but it’s still wise to localize things within specific directories or source files when you can. Otherwise the main "pollen.rkt" can get to be unwieldy.
content-rule-color is a CSS value.
buy-url is the master URL for buying the TFL paperback. In general, it’s wise to store hard-coded values like these in a variable so that you can change the value from one location later if you need to.
no-hyphens-attr is an X-expression attribute we’ll use to signal that a certain X-expression should not be hyphenated. The need for this will be explained later.
(define content-rule-color "#444") (define buy-url "http://typo.la/oc") (define no-hyphens-attr '(hyphens "none"))
1.4.2 Tag functions
1.4.2.1 Making tagged X-expressions (txexprs)
In a "pollen.rkt" you’ll be making a lot of tagged X-expressions (txexprs for short). A txexpr is just a Racket list, so you can make txexprs with any of Racket’s list-making functions — which are plentiful. Which one you use depends on what fits most naturally with the current task.
X-expressions are introduced in the Pollen docs.
Let’s run through a few of them, so they start to become familiar. Suppose we want to generate the txexpr ’(div ((class "big")) "text"). Here are some ways to do it.
1.4.3 txexpr
A utility function from the txexpr module. We used it in the link function above. The major advantage of txexpr is that it will raise an error if your arguments are invalid types for a tagged X-expression.
> (txexpr 'div '((class "big")) '("text")) '(div ((class "big")) "text")
> (txexpr 42 '((class "big")) '("text")) txexpr: This is not a txexpr-tag: 42
> (txexpr 'div 'invalid-input "text") andmap: contract violation
expected: list?
given: "text"
argument position: 2nd
other arguments...:
#<procedure:my-xexpr?>
> (txexpr 'div '((class "big")) 'invalid-input) andmap: contract violation
expected: list?
given: 'invalid-input
argument position: 2nd
other arguments...:
#<procedure:my-xexpr?>
The second and third arguments to txexpr are lists, so you can use any list notation. If your txexpr doesn’t have attributes, you pass empty or null for the second argument.
Because txexpr is designed to check its arguments for correctness, it insists on getting an explicit argument for the attributes, even if empty. When you’re using generic list-making functions (see below) to create txexprs, you can omit the attribute list if it’s empty.
1.4.4 list and list*
list* is particularly useful for making txexprs, because it automatically splices the last argument.
> (list 'div '((class "big")) "text") '(div ((class "big")) "text")
> (list* 'div '((class "big")) '("text")) '(div ((class "big")) "text")
Unlike txexpr, however, list and list* will happily let you create invalid txexprs.
This isn’t necessarily a bad thing. When a txexpr needs to pass through multiple layers of processing, it can be useful to create intermediate results that are txexpr-ish, and simplify them at the end.
1.4.5 cons
All lists are ultimately made of cons cells. So you can make txexprs with cons too, though it’s more cumbersome than the other methods. In most cases, list* is clearer & more flexible, because cons can only take two arguments, whereas list* can take any number.
> (cons 'div (cons '((class "big")) (cons "text" empty))) '(div ((class "big")) "text")
> (cons 'div (list '((class "big")) "text")) '(div ((class "big")) "text")
1.4.6 quasiquote
As the name suggests, quasiquote works like quote, but lets you unquote variables within. Quasiquote notation is pleasingly compact for simple cases. But it can be unruly for complex ones. The unquote operator (,) puts a variable’s value into the list. The unquote splicing operator (,@) does the same thing, but if the variable holds a list of items, it merges those items into the list (i.e., does not leave them as a sublist).
Below, we unquote attrs because we want them to remain a sublist. But we splice elements because we want them to be merged with the main list.
> (let ([tag 'div] [attrs '((class "big"))] [elements '("text")]) `(,tag ,attrs ,@elements)) '(div ((class "big")) "text")
1.4.7 Functions
In Pollen notation, we’ll invoke the tag function like so:
◊link[url]{text of link} |
◊link[url #:class "name"]{text of link} |
This will become, in Racket notation:
(link url "text of link") |
(link url #:class "name" "text of link") |
Getting a feel for the duality of Pollen & Racket notation is a necessary part of the learning curve. If it seems like an annoying complication, consider that the two styles are optimized for different contexts: Pollen notation is for embedding commands in text, and Racket notation is for writing code. The fact that the two are interchangeable is what guarantees that everything that can be done in Racket can also be done in Pollen.
The result of our tag function will be a tagged X-expression that looks like this:
'(a ((href "url")) "text to link") |
'(a ((href "url")(class "name")) "text to link") |
The definition of link follows the arguments above.
url is a mandatory argument.
css-class is a keyword argument (= must be introduced with #:class) and also optional (if it’s not provided, it will default to #f).
tx-elements is an optional argument that represents the text (or other content) that gets linked. If we don’t have anything to link, use url as the link text too.
tx-elements is a rest argument, as in “put the rest of the arguments here.” Most definitions of tag functions should end with a rest argument. Why? Because in Pollen notation, the {text ...} in ◊func[arg]{text ...} can return any number of arguments. Maybe one (e.g., if {text ...} is a word) or maybe more (e.g, if {text ...} is a multiline block).
If you don’t use a rest argument, and pass multiple text arguments to your tag function, you’ll get an error (namely an “arity error,” which means the function got more arguments than it expected).
let* is the idiomatic Racket way to do what looks like mutation. Though you’re not really mutating the variable — you’re creating copies, all of which have the same name. For true mutation, you could also use set! — not wrong, but not idiomatic.
(define (link url #:class [class-name #f] . tx-elements) (let* ([tx-elements (if (empty? tx-elements) (list url) tx-elements)] [link-tx (txexpr 'a empty tx-elements)] [link-tx (attr-set link-tx 'href url)]) (if class-name (attr-set link-tx 'class class-name) link-tx)))
The next three tag functions are just convenience variations of link. But they involve some crafty (and necessary) uses of apply.
procedure
(buy-book-link tx-element ...) → txexpr?
tx-element : xexpr?
procedure
(buylink url tx-element ...) → txexpr?
url : string? tx-element : xexpr?
procedure
(home-link url tx-element ...) → txexpr?
url : string? tx-element : xexpr?
Notice that we have to use apply to correctly pass our tx-elements rest argument to link. Why? Because link expects its text arguments to look like this:
(link url arg-1 arg-2 ...) |
Not like this:
(link url (list arg-1 arg-2 ...)) |
But that’s what will happen if we just do (link tx-elements), and link will complain. (Try it!)
The role of apply is to take a list of arguments and append them to the end of the function call, so
(apply link url (list arg-1 arg-2 ...)) |
Is equivalent to:
(link url arg-1 arg-2 ...) |
The difference here is that we’re not providing a specific URL. Rather, we want to pass through whatever URL we get from the Pollen source. So we add a url argument.
(define (buy-book-link . tx-elements) (apply link buy-url tx-elements)) (define (buylink url . tx-elements) (apply link url #:class "buylink" tx-elements)) (define (home-link url . tx-elements) (apply link url #:class "home-link" tx-elements))
procedure
(image image-path [ #:width width #:border border?]) → txexpr? image-path : path-string? width : string? = "100%" border? : boolean? = #t
“Right, but shouldn’t we use a rest argument just in case?” It depends on how you like errors to be handled. You could capture the text arguments with a rest argument and then just silently dispose of them. But this might be mysterious to the person editing the Pollen source (whether you or someone else). "Where did my text go?"
Whereas if we omit the rest argument, and try to pass text arguments anyhow, image will immediately raise an error, letting us know that we’re misusing it.
(define (image src #:width [width "100%"] #:border [border? #t]) (define img-tag (attr-set* '(img) 'style (format "width: ~a" width) 'src (build-path "images" src))) (if border? (attr-set img-tag 'class "bordered") img-tag))
procedure
(div-scale factor tx-element ...) → txexpr?
factor : (or/c string? number?) tx-element : xexpr?
(define (div-scale factor . tx-elements) (define base (txexpr 'div null tx-elements)) (attr-set base 'style (format "width: ~a" factor)))
procedure
(font-scale ratio tx-element ...) → txexpr?
ratio : (or/c string? number?) tx-element : xexpr?
(define (font-scale ratio . tx-elements) (define base (txexpr 'span null tx-elements)) (attr-set base 'style (format "font-size: ~aem" ratio)))
procedure
(home-image image-path) → txexpr?
image-path : path-string?
procedure
(home-overlay image-name tx-element ...) → txexpr?
image-name : path-string? tx-element : xexpr?
(define (home-overlay img-path . tx-elements) `(div ((class "home-overlay") (style ,(format "background-image: url('~a')" img-path))) (div ((class "home-overlay-inner")) ,@tx-elements)))
Here, we’ll use default-tag-function, which is an easy way to make a simple tag function. Any keywords passed in will be propagated to every use of the tag function.
(define glyph (default-tag-function 'span #:class "glyph"))
procedure
(image-wrapped image-path) → txexpr?
image-path : path-string?
(define (image-wrapped img-path) (attr-set* (image img-path) 'class "icon" 'style "width: 120px;" 'align "left"))
The idea is to interpret a sequence of three (or more) linebreaks in the text as a list-item delimiter (i.e., drop in a <li> tag). Why three linebreaks? Because later on, we’ll use one linebreak to denote a new line, and two linebreaks to denote a new paragraph.
This function will be used within a decode function (more on that below) in a position where it will be passed a list of X-expresssion elements, so it also needs to return a list of X-expression elements.
The idiomatic Racket way to enforce requirements on input & output values is with a function contract. For simplicity, I’m not using them here, but they are another virtuous habit .
Our list of elements could contain sequences like '("\n" "\n" "\n"), which should mean the same thing as "\n\n\n". So first, we’ll combine adjacent newlines with merge-newlines.
filter-split will divide a list into sublists based on a test for the list-item delimiter. The result will be a list of lists, each representing the contents of an 'li tag. We’ll convert any paragraphs that are inside the list items. Finally we’ll wrap each of these lists of paragraphs in an 'li tag.
(define (detect-list-items elems) (define elems-merged (merge-newlines elems)) (define (list-item-break? elem) (define list-item-separator-pattern (regexp "\n\n\n+")) (and (string? elem) (regexp-match list-item-separator-pattern elem))) (define list-of-li-elems (filter-split elems-merged list-item-break?)) (define list-of-li-paragraphs (map (λ(li) (decode-paragraphs li #:force? #t)) list-of-li-elems)) (define li-tag (default-tag-function 'li)) (map (λ(lip) (apply li-tag lip)) list-of-li-paragraphs))
Explicit type checking — e.g., (string? elem) — is common in Racket. You can do “duck typing” (see with-handlers) but it’s not idiomatic. IMO this is wise — better to have an explicit, readable test (likse string?) rather than an implicit, indirect one (“If the input isn’t a string?, then a certain error will arise.”)
Because of the expression-based structure of Racket, it’s often possible to write functions in an absurdly nested style. For instance, the last function could be written like so:
(define (detect-list-items elems) (map (compose1 (curry apply (default-tag-function 'li)) (curryr decode-paragraphs #:force? #t)) (filter-split (merge-newlines elems) (λ(x) (and (string? x) (regexp-match #rx"\n\n\n+" x))))))
This is a good way to lose your friends, and then your mind. You may not care to spell everything out the way I’ve been doing in this sample project. But readability is a virtuous habit.
procedure
(make-list-function tag [attrs]) → procedure?
tag : txexpr-tag? attrs : empty = (listof txexpr-attrs?)
In Racket you’ll often see functions that make other functions. (These are sometimes called higher-order functions.) This is a good way to avoid making a bunch of functions that have small variations.
One way to write this function is like so:
(define (make-list-function tag [attrs empty]) (define (listifier . args) (list* tag attrs (detect-list-items args)) listifier))
That is, explicitly define a new function called listifier and then return that function. That’s the best way to do it in many programming languages.
In Racket, it’s wouldn’t be wrong. But you should feel comfortable with the idea that any function can be equivalently expressed in lambda notation, which is the more idiomatic form.
procedure
(bullet-list tx-element ...) → txexpr
tx-element : txexpr?
procedure
(numbered-list tx-element ...) → txexpr
tx-element : txexpr?
(define bullet-list (make-list-function 'ul))
(define numbered-list (make-list-function 'ol))
Another example of using a tag function to handle fiddly HTML markup. The btw tag expands to an HTML list. We will then crack this open and slip in a div for the headline.
(define (btw . tx-elements) (define btw-tag-function (make-list-function 'ul '((class "btw")))) (define btw-list (apply btw-tag-function tx-elements)) (list* (get-tag btw-list) (get-attrs btw-list) '(div ((id "btw-title")) "by the way") (get-elements btw-list)))
procedure
(xref target) → txexpr?
target : string? (xref url target) → txexpr? url : string? target : string?
◊xref{target} |
◊xref["url"]{target} |
For this tag function, we’ll assume that target is a single text argument, because that’s how it will be used. But to be safe, we’ll raise an error if we get too many arguments.
What makes this function a little tricky is that url is optional, but if it appears, it appears first. That makes this a good job for case-lambda, which lets you define separate branches for your function depending on the number of arguments provided.
In the one-argument case, rather than duplicate the line of code in the two-argument case, we call the function again with a second argument.
(define xref (case-lambda [(target) (xref (target->url target) target)] [(url target) (apply attr-set* (link url target) 'class "xref" no-hyphens-attr)] [more-than-two-args (apply raise-arity-error 'xref (list 1 2) more-than-two-args)]))
This function depends on a personal commitment to name source files in a logical, predictable way, e.g., “Why Does Typography Matter?” becomes why-does-typography-matter.html. This way, the name of the source file for a page can be derived from its title.
If you needed to associate targets with URLs arbitrarily, you could store the targets and URLs in an association list or hashtable. But I prefer this approach, because it’s easy to add new pages and cross-references, without the extra housekeeping step.
(define (target->url target) (define nonbreaking-space (~a #\u00A0)) (let* ([x target] [x (string-trim x "?")] [x (string-downcase x)] [x (regexp-replace* #rx"é" x "e")] [x (if (regexp-match #rx"^foreword" x) "foreword" x)] [x (if (regexp-match #rx"^table of contents" x) "toc" x)] [x (string-replace x nonbreaking-space "-")] [x (string-replace x " " "-")]) (format "~a.html" x)))
This could also be done with default-tag-function. And as a rule of thumb, it’s wise to reserve macros for the times you can’t avoid using them. Otherwise, use a function.
We’ll bend that rule here because this is a quick & easy example macro. What makes it suitable to be handled as a macro is that we want to use the name of the identifier (for instance topic) as an argument to the function. With a function, we can’t do that. But with a macro, we can.
define-syntax-rule is the easiest macro form: essentially you’re writing a code template with arguments that will be filled in when you invoke the macro. Notice how heading-name appears in two roles: first as an identifier name, and then as a literal symbol.
(define-syntax-rule (define-heading heading-name tag) (define heading-name (default-tag-function tag #:class (symbol->string 'heading-name))))
“Wait, why does 'heading-name not produce the literal symbol 'heading-name?” The 'heading-name syntax is just shorthand for (quote heading-name). Because this is a macro, the heading-name inside this expression gets replaced with the value of the macro argument heading-name before quote is evaluated.
procedure
(topic tx-element ...) → txexpr?
tx-element : xexpr?
procedure
(subhead tx-element ...) → txexpr?
tx-element : xexpr?
procedure
(font-headline tx-element ...) → txexpr?
tx-element : xexpr?
procedure
(section tx-element ...) → txexpr?
tx-element : xexpr?
procedure
(chapter tx-element ...) → txexpr?
tx-element : xexpr?
(define-heading topic 'h3) (define-heading subhead 'h3) (define-heading font-headline 'h3) (define-heading section 'h2) (define-heading chapter 'h1)
This macro relies on syntax-case rather than define-syntax-rule. It’s a little more complicated, but also more flexible (and more idiomatic in Racket). define-syntax-rule is actually a special-case version of syntax-case. The best advice on learning macros is to start with syntax-case, because you can’t live without it.
Greg Hendershott’s Fear of Macros is a great place to start if you’re new to Racket macros.
Otherwise this macro is similar to define-heading, except that we want to introduce a new identifier with a different name, but based on the argument given to the macro. So if we pass topic to the macro, it will define an identifier called topic-from-metas. You can’t do that with define-syntax-rule.
(define meta-key-for-page-title 'title) (define-syntax (define-heading-from-metas stx) (syntax-case stx () [(_ heading-name) (with-syntax ([heading-from-metas (format-id stx "~a-from-metas" #'heading-name)]) #'(define (heading-from-metas metas) (heading-name (hash-ref metas meta-key-for-page-title))))]))
procedure
(topic-from-metas metas) → txexpr?
metas : hash?
procedure
(section-from-metas metas) → txexpr?
metas : hash?
procedure
(chapter-from-metas metas) → txexpr?
metas : hash?
(define-heading-from-metas topic) (define-heading-from-metas section) (define-heading-from-metas chapter)
procedure
(hanging-topic topic-xexpr tx-element ...) → txexpr?
topic-xexpr : xexpr? tx-element : xexpr?
(define (hanging-topic topic-xexpr . tx-elements) (txexpr 'div (list '(class "hanging-topic") no-hyphens-attr) (list topic-xexpr (list* 'p (list no-hyphens-attr) tx-elements))))
◊quick-table{ |
heading left | heading center | heading right |
upper left | upper center | upper right |
lower left | lower center | lower right} |
This function assumes that each row has the same number of columns. You could improve it to fill in blank cells in rows that need them.
The idea is to break down the input into table headings and cells, and then work back up, wrapping each layer in the appropriate tags.
(define (quick-table . tx-elements) (define rows-of-text-cells (let ([text-rows (filter-not whitespace? tx-elements)]) (for/list ([text-row (in-list text-rows)]) (for/list ([text-cell (in-list (string-split text-row "|"))]) (string-trim text-cell))))) (match-define (list tr-tag td-tag th-tag) (map default-tag-function '(tr td th))) (define html-rows (match-let ([(cons header-row other-rows) rows-of-text-cells]) (cons (map th-tag header-row) (for/list ([row (in-list other-rows)]) (map td-tag row))))) (cons 'table (for/list ([html-row (in-list html-rows)]) (apply tr-tag html-row))))
procedure
(pdf-thumbnail pdf-path) → txexpr?
pdf-path : path-string?
This function will only work properly if you have sips on your system (= command-line image-processing program, included with OS X).
This shows how you can fold other kinds of project housekeeping into Pollen commands. Here, the function generates the thumbnail it needs when the page is compiled.
One disadvantage of this approach is that the thumbnail will always be generated on recompile, though you could put in some logic to avoid this (e.g., check the modification date of the PDF). In this case, sips is fast enough that it’s not bothersome.
(define (pdf-thumbnail-link pdf-pathstring) (define img-extension "gif") (define img-pathstring (->string (add-ext (remove-ext pdf-pathstring) img-extension))) (define sips-command (format "sips -Z 2000 -s format ~a --out '~a' '~a' > /dev/null" img-extension img-pathstring pdf-pathstring)) (link pdf-pathstring (if (system sips-command) `(img ((src ,img-pathstring))) "sips not available")))
procedure
(pdf-thumbnail-link-from-metas metas) → txexpr?
metas : hash?
procedure
(before-and-after-pdfs base-name) → txexpr?
base-name : string?
procedure
(alternate-after-pdf base-name) → txexpr?
base-name : string?
(define (pdf-thumbnail-link-from-metas metas) (define-values (dir fn _) (split-path (add-ext (remove-ext* (hash-ref metas 'here-path)) "pdf"))) (pdf-thumbnail-link (->string fn))) (define (before-and-after-pdfs base-name) `(div (div ((class "pdf-thumbnail")) "before" (br) ,(pdf-thumbnail-link (format "pdf/sample-doc-~a-before.pdf" base-name))) (div ((class "pdf-thumbnail")) "after" (br) ,(pdf-thumbnail-link (format "pdf/sample-doc-~a-after.pdf" base-name))))) (define (alternate-after-pdf base-name) `(div ((class "pdf-thumbnail")) "after (alternate)" (br) ,(pdf-thumbnail-link (format "pdf/sample-doc-~a-after-alternate.pdf" base-name))))
In a Pollen markup source, the output is a tagged X-expression that starts with root:
(root (div ((class "headline")) "Page title") ...) |
Recall that every Pollen tag calls a function with the same name (if it exists, otherwise it just becomes a tag). This is also true of root.
root has slightly special status inasmuch as it is the top tag of the X-expression, and thus the last tag function that will get called. Therefore, root is a good place to put any processing that should happen once all the page content has been filled in.
Often, you’ll want to use a decode or decode-elements function, which can recursively perform different kinds of processing on different types of page elements.
In this case, we’ll use decode-elements twice. First, we’ll use it just to detect paragraphs. We’ll do this so that they’re treated as blocks (see block-txexpr?) in the second phase, which does the rest of the processing.
(define (root . elems) (define elements-with-paragraphs (decode-elements elems #:txexpr-elements-proc decode-paragraphs)) (list* 'div '((id "doc")) (decode-elements elements-with-paragraphs #:block-txexpr-proc hyphenate-block #:string-proc (compose1 make-quotes-hangable fix-em-dashes smart-quotes) #:exclude-tags '(style script))))
The basic hyphenate function comes from the hyphenate module. We could attach hyphenate to our root decoder as a string processor rather than block processor. But we want to be able to handle our no-hyphens flag (aka no-hyphens-attr), which is stored in the attributes of the X-expression. Therefore, we have to look at blocks, not just strings.
(define (hyphenate-block block-tx) (define (no-hyphens? tx) (or (member (get-tag tx) '(th h1 h2 h3 h4 style script)) (member no-hyphens-attr (get-attrs tx)))) (hyphenate block-tx #:min-left-length 3 #:min-right-length 3 #:omit-txexpr no-hyphens?))
Because I’m a typography snob I like to push quotation marks into the margin a little bit when they appear at the left edge of a line (aka hanging quotes). This function just wraps left-hand quote marks in two little tags (push and pull) that I can then manipulate in CSS to get the effect.
(define (make-quotes-hangable str) (define substrs (regexp-match* #px"\\s?[“‘]" str #:gap-select? #t)) (if (= (length substrs) 1) (car substrs) (cons 'quo (append-map (λ(str) (let ([strlen (string-length str)]) (if (> strlen 0) (case (substring str (sub1 strlen) strlen) [("‘") (list '(squo-push) `(squo-pull ,str))] [("“") (list '(dquo-push) `(dquo-pull ,str))] [else (list str)]) (list str)))) substrs))))
When I type an em dash in my sources, I will often leave a space around it, but I don’t want spaces in the output, so this function removes them.
(define (fix-em-dashes str) (let* ([str (regexp-replace* #px"(?<=\\w)[ \\s]—" str "—")] [str (regexp-replace* #px"—[ \\s](?=\\w)" str "—")]) str))
1.4.7.1 Miscellaneous tag functions
Presented without docs or comment, as it should be obvious at this point what they do.
(define omission (default-tag-function 'div #:class "omission")) (define mono (default-tag-function 'span #:class "mono")) (define font-details (default-tag-function 'div #:class "font-details")) (define mb-font-specimen (default-tag-function 'div #:class "mb-font-specimen" #:contenteditable "true")) (define (margin-note . xs) `(div ((class "margin-note") ,no-hyphens-attr) ,@xs)) (define os (default-tag-function 'span #:class "os")) (define (gap [size 1.5]) `(div ((style ,(format "height: ~arem" size))))) (define (center . xs) `(div ((style "text-align:center")) ,@xs)) (define (indented #:hyphenate [hyphenate #t] . xs) `(p ((class "indented"),@(if (not hyphenate) (list no-hyphens-attr) null)) ,@xs)) (define caption-runin (default-tag-function 'span #:class "caption-runin")) (define caption (default-tag-function 'span #:class "caption")) (define (captioned name . xs) `(table ((class "captioned indented")) (tr (td ((style "text-align:left")) ,@xs) (td ,(caption name)))))
1.5 Utility functions
procedure
(dev-mode?) → boolean?
> POLLEN=DEV raco pollen ... |
Rather than the ordinary:
> raco pollen ... |
This functions will be useful later when we want to change the behavior of certain functions when Pollen runs in dev mode. For instance, we might want to run certain functions in a higher speed / lower quality mode. Or output debug information about others.
Though the environment variable name is fixed as POLLEN, there’s no special magic to DEV. We could pick any value we wanted to denote development mode:
> POLLEN=FLUGELHORN raco pollen ... |
(define (capitalize-first-letter str) (regexp-replace #rx"^." str string-upcase))
1.6 Finally
This last incantation is needed so this scribble/lp2 document knows how to put together all the code chunks we’ve introduced in this file.