Glypht
  • Documentation
  • Discussions
  • GitHub
Navigation
  • Documentation
    • @glypht/bundler-utils
      • NodeType
      • CSSSpan
      • CSSOutput
      • FeatureMetadata
      • FamilyInfo
      • SubsetAxisSetting
      • ExportedFont
      • CharacterSetSettings
      • FamilySubsetSettings
      • FamilySettings
      • ExportFontsSettings
      • featureMetadata
      • sortFontsIntoFamilies
      • exportedFontsToCSS
      • exportFonts
      • parseUnicodeRanges
      • parseRanges
      • formatUnicodeRanges
    • @glypht/cli
      • GlyphtConfig
      • build
    • @glypht/core
      • AxisValueFormat
      • AxisValueFlags
      • WoffCompressionContext
      • GlyphtContext
      • CompressOptions
      • DecompressOptions
      • LoadFontsOptions
      • AxisInfo
      • SubsetAxisInfo
      • StyleValue
      • FeatureInfo
      • NamedInstance
      • StyleKey
      • StyleValues
      • SfntVersion
      • DesignAxisRecord
      • AxisValueSingle
      • AxisValueRange
      • AxisValueLinked
      • AxisValueMultiple
      • AxisValue
      • StyleAttributes
      • SubsettedFont
      • SubsetInfo
      • SubsetAxisSetting
      • SubsetSettings
      • FontRef
      • SubsetName
      • SUBSET_NAMES
    • Comparison with other tools
    • Web app

CharacterSetSettings

Settings for the characters to include in a single output font face.

type CharacterSetSettings = {
    includeNamedSubsets?: SubsetName[];
    includeUnicodeRanges?: string | (number | readonly [number, number])[];
    name?: string;
}
  • Defined in index.ts:473
Index

Properties

includeNamedSubsets? includeUnicodeRanges? name?

Properties

OptionalincludeNamedSubsets

includeNamedSubsets?: SubsetName[]

Include these named Google Fonts character sets.

  • Defined in index.ts:475

OptionalincludeUnicodeRanges

includeUnicodeRanges?: string | (number | readonly [number, number])[]

Include these custom Unicode code point ranges. You can specify an array of ranges, or a string in a format similar to the CSS unicode-range property (see parseUnicodeRanges for details on how it's parsed).

  • Defined in index.ts:480

Optionalname

name?: string

The custom name of this character set, used in font filenames and CSS comments.

  • Defined in index.ts:482