Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

font-ligatures

princjef50.9kMIT1.4.1TypeScript support: included

Find ligature replacements for any system font

font, opentype, truetype, ligature

readme

font-ligatures

GitHub Actions codecov npm version

Find ligature replacements for any system font. Useful for determining glyph substitutions and ranges where ligatures exist within a string of input text.

npm install font-ligatures

Usage

const fontLigatures = require('font-ligatures');

(async () => {
  const font = await fontLigatures.load('Iosevka');
  console.log(font.findLigatures('in --> out'));
  // {
  //   inputGlyphs:   [ 76, 81, 3, 16,   16,   33, 3, 82, 88, 87 ],
  //   outputGlyphs:  [ 76, 81, 3, 3140, 3128, 33, 3, 82, 88, 87 ],
  //   contextRanges: [ [ 3, 6 ] ]
  // }
})();

API

load(name, [options])

Loads the font with the given name, returning a Promise with a Font that can be used to find ligature information.

Params

  • name [string] - The font family of the font to load
  • options [object] - Optional configuration object containing the following keys:
    • cacheSize [number] - The amount of data from previous results to cache within the parser. The size is measured by the length of the input text for each call. Turned off by default.

loadFile(path, [options])

Loads the font at the given path, returning a Promise with a Font that can be used to find ligature information.

Params

  • path [string] - Path to the file containing the font
  • options [object] - Optional configuration object containing the following keys:
    • cacheSize [number] - The amount of data from previous results to cache within the parser. The size is measured by the length of the input text for each call. Turned off by default.

loadBuffer(buffer, [options])

Loads the font from it's binary data, returning a Font that can be used to find ligature information.

Params

  • buffer [ArryaBuffer] - Binary data of the font file as an ArrayBuffer
  • options [object] - Optional configuration object containing the following keys:
    • cacheSize [number] - The amount of data from previous results to cache within the parser. The size is measured by the length of the input text for each call. Turned off by default.

Font

Object returned by load(). Includes the following methods:

findLigatures(text)

Scans the provided text for font ligatures, returning an object with the following keys:

  • inputGlyphs [number[]] - The list of font glyphs in the input text.
  • outputGlyphs [number[]] - The list of font glyphs after performing replacements for font ligatures.
  • contextRanges [[number, number][]] - Sorted array of ranges that must be rendered together to produce the ligatures in the output sequence. The ranges are inclusive on the left and exclusive on the right

findLigatureRanges(text)

Scans the provided text for font ligatures, returning an array of ranges where ligatures are located.

Params

  • text [string] - text to search for ligatures

Font Support

This library is designed to support fonts that make use of programming ligatures. As a result, it is tested against all of the ligatures produced by the following fonts:

If there is another font that you use which doesn't seem to be working, please open an issue with the font information and where to get it. The most likely cause is that the font uses a type of substitution which is not yet supported.

Contributing

Want to contribute to the project? Go check out the Contribution Guide for instructions to set up your development environment, open an issue and create a pull request.

changelog

1.4.1 (2022-01-07)

Bug Fixes

  • build: move to github actions (#25) (bdd919d)
  • build: switch to manual PAT for releases (#26) (6daa0b7)

1.4.0 (2021-03-09)

Features

  • enable usage in browser by providing font array buffer (#22) (b8abbcd)

1.3.3 (2020-07-08)

Bug Fixes

  • check if font.tables.gsub is undefined (#18) (db06c92)

1.3.2 (2018-08-11)

Bug Fixes

  • deps: update font-finder to fix bug when listing (8e22577)

1.3.1 (2018-08-01)

Performance Improvements

  • remove and update dependencies to reduce footprint (57bd93e)

1.3.0 (2018-05-12)

Features

  • cache: add option to cache previous results (54cfbcd)

1.2.4 (2018-05-12)

Bug Fixes

  • merge: test and fix various issues merging lookup trees (9d87a25)

1.2.3 (2018-05-12)

Performance Improvements

  • merge context ranges as they're found (ae31063)

1.2.2 (2018-05-12)

Performance Improvements

  • only try lookups that might result in a substitution (e5a0b03)

1.2.1 (2018-05-11)

Performance Improvements

  • generate lookup tree on load (10c7fc1)

1.2.0 (2018-05-03)

Features

  • add ability to retrieve only the ligature ranges (f120430)

1.1.1 (2018-05-03)

Performance Improvements

  • short circuit ligature parsing when there are no lookup groups (61693d7)

1.1.0 (2018-05-03)

Features

  • add option to load font from file (400c0be)

1.0.0 (2018-05-01)

Features