diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-01-14 10:19:13 +0100 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-01-14 10:19:13 +0100 |
commit | 66d3fe0ec287aee7ee5180ee5c6ec01129b791b0 (patch) | |
tree | 4950aa37296a57e8786e81b144731928b11758c9 | |
parent | ef4abccff44fa27fbdf5bb658164d77903f914ef (diff) | |
download | luaotfload-66d3fe0ec287aee7ee5180ee5c6ec01129b791b0.tar.gz |
[parsers] add file stub of luaotfload-parsers.lua to repo
-rw-r--r-- | luaotfload-parsers.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/luaotfload-parsers.lua b/luaotfload-parsers.lua new file mode 100644 index 0000000..5391a1d --- /dev/null +++ b/luaotfload-parsers.lua @@ -0,0 +1,21 @@ +#!/usr/bin/env texlua +----------------------------------------------------------------------- +-- FILE: luaotfload-parsers.lua +-- DESCRIPTION: various lpeg-based parsers used in Luaotfload +-- REQUIREMENTS: Luaotfload > 2.4 +-- AUTHOR: Philipp Gesang (Phg), <phg42.2a@gmail.com> +-- VERSION: same as Luaotfload +-- CREATED: 2014-01-14 10:15:20+0100 +----------------------------------------------------------------------- +-- + +if not modules then modules = { } end modules ['luaotfload-parsers'] = { + version = "2.5", + comment = "companion to luaotfload.lua", + author = "Philipp Gesang", + copyright = "Luaotfload Development Team", + license = "GNU GPL v2.0" +} + + + |