blob: 20eb2777e14fd6c712b67b6836f3471e137ee861 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
if not modules then modules = { } end modules ["loaders"] = {
version = "2.4",
comment = "companion to luaotfload.lua",
author = "Hans Hagen, Khaled Hosny, Elie Roux, Philipp Gesang",
copyright = "PRAGMA ADE / ConTeXt Development Team",
license = "see context related readme files"
}
local fonts = fonts
local readers = fonts.readers
local handlers = fonts.handlers
local formats = fonts.formats
--[[doc--
As of 2013-08-25 AFM support has been included in the fontloader
package.
We still have to load the font feature definitions (font-afk.lua) to
achieve kerning and ligatures.
--doc]]--
require "luaotfload-font-afk.lua"
local pfb_reader = function (specification)
return readers.opentype (specification, "pfb", "type1")
end
local pfa_reader = function (specification)
return readers.opentype (specification, "pfa", "type1")
end
formats.pfa = "type1"
readers.pfa = pfa_reader
handlers.pfa = { }
formats.pfb = "type1"
readers.pfb = pfb_reader
handlers.pfb = { }
-- vim:tw=71:sw=2:ts=2:expandtab
|