JSPM

  • Created
  • Published
  • Downloads 1145
  • Score
    100M100P100Q118789F
  • License MIT

Smart typography transformations: curly quotes, em-dashes, en-dashes, and more

Package Exports

  • punctilio

Readme

punctilio (n.): precise observance of formalities.

The best typography package for English.

import { transform } from 'punctilio'

transform('"It\'s a beautiful thing, the destruction of words..." -- 1984')
// → “It’s a beautiful thing, the destruction of words…”—1984

Test Lint Coverage

npm install punctilio

Why punctilio?

As far as I can tell, punctilio is the most reliable and feature-complete. I built punctilio for my website. I wrote[^wrote] and sharpened the core regexes sporadically over several months, exhaustively testing edge cases. Eventually, I decided to spin off the functionality into its own package.

[^wrote]: While Claude is the number one contributor to this repository, that’s just because Claude has helped me port my existing code and add minor features. The core regular expressions (e.g. dashes, quotes, multiplication signs) are human-written. Those numerous commits don’t show in this repo’s history.

I tested punctilio 1.0.1 against smartypants 0.2.2, tipograph 0.7.4, smartquotes 2.3.2, typograf 7.6.0, and retext-smartypants 6.2.0.[^python] These other packages have spotty feature coverage and inconsistent impact on text. For example, smartypants mishandles quotes after em dashes (though quite hard to see in GitHub’s font) and lacks multiplication sign support.

[^python]: The Python libraries I found were closely related to the JavaScript packages. I tested them and found similar scores, so I don’t include separate Python results.

Input smartypants punctilio
She said—"Hi!" She said—”Hi!” (✗) She said—“Hi!” (✓)
5x5 5x5 (✗) 5×5 (✓)

My benchmark.mjs measures how well libraries handle a wide range of scenarios. The benchmark normalizes stylistic differences (e.g. non-breaking vs regular space, British vs American dash spacing) for fair comparison.

Package Score
punctilio 79/82 (96%)
tipograph 51/82 (62%)
typograf 42/82 (51%)
smartquotes 31/82 (38%)
smartypants 30/82 (37%)
retext-smartypants 28/82 (34%)
Feature Example smartypants tipograph smartquotes typograf punctilio
Smart quotes "hello" → "hello"
Leading apostrophe 'Twas → 'Twas
Em dash -- → —
En dash (ranges) 1-5 → 1–5
Minus sign -5 → −5
Ellipsis ... → …
Multiplication 5x5 → 5×5
Math symbols != → ≠
Legal symbols (c) → © © only
Arrows -> → →
Prime marks 5'10" → 5′10″
Degrees 20 C → 20 °C
Fractions 1/2 → ½
Superscripts 1st → 1ˢᵗ
Localization American/British
Ligatures ?? → ⁇
Non-English quotes „Hallo" (German)
Non-breaking spaces Chapter 1

typograf uniquely inserts non-breaking spaces to prevent bad line breaks (e.g. before numbers, after colons). I might add this to punctilio in the future. punctilio's other missing feature is non-English quote support—feel free to make a pull request!

Works with HTML DOMs via separation boundaries

Other typography libraries either transform plain strings or operate on AST nodes individually (retext-smartypants can’t map changes back to HTML). But real HTML has text spanning multiple elements—if you concatenate text from <em>Wait</em>..., transform it, then try to split it back, you've lost track of where </em> belonged.

punctilio introduces separation boundaries. First, insert a “separator” character (default: U+E000) at each element boundary before transforming (like at the start and end of an <em>). Every regex allows this character mid-pattern without breaking matches. For example, .[SEP].. still becomes …[SEP]. punctilio validates the output by ensuring the separator count remains the same.

import { transform, DEFAULT_SEPARATOR } from 'punctilio'

transform(`"Wait${DEFAULT_SEPARATOR}"`)
// → `“Wait”${DEFAULT_SEPARATOR}`
// The separator doesn’t block the information that this should be an end-quote!

Use via a DOM walker tracks which text node each segment came from, inserts separators between them, transforms the combined string, then splits on separators to update each node. Use the separator option if U+E000 conflicts with your content. For an example of how to integrate this functionality, see my website’s code.

Not for raw Markdown

punctilio transforms plain text or separator-flattened HTML—not raw Markdown.

Options

punctilio doesn’t enable all transformations by default. Fractions and degrees tend to match too aggressively (perfectly applying the degree transformation requires semantic meaning). Superscript letters and punctuation ligatures have spotty font support—on GitHub, this README’s font doesn’t even support the example superscript! Furthermore, ligatures = true can change the meaning of text by collapsing question and exclamation marks.

transform(text, {
  punctuationStyle: 'american' | 'british' | 'none',  // default: 'american'
  dashStyle: 'american' | 'british' | 'none',         // default: 'american'

  symbols: true,           // math, legal, arrows
  collapseSpaces: true,    // normalize whitespace
  fractions: false,        // 1/2 → ½
  degrees: false,          // 20 C → 20 °C
  superscript: false,      // 1st → 1ˢᵗ
  ligatures: false,        // ??? → ⁇, ?! → ⁈, !? → ⁉, !!! → !
  checkIdempotency: true,  // verify transform(transform(x)) === transform(x)
})

The 'american' style follows the Chicago Manual of Style:

  • Punctuation: Periods and commas go inside quotation marks (“Hello,” she said.)
  • Dashes: Unspaced em-dashes between words (word—word)

The 'british' style follows Oxford style:

  • Punctuation: Periods and commas go outside quotation marks (“Hello”, she said.)
  • Dashes: Spaced en-dashes between words (word – word)

punctilio is idempotent by design: transform(transform(text)) always equals transform(text). If performance is critical, set checkIdempotency: false to skip the verification pass.