blob: 3c591a3079d70326af702a1affe91cc30d522cb3 (
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
|
--
-- Copyright (c) 2021-2024 Zeping Lee
-- Released under the MIT license.
-- Repository: https://github.com/zepinglee/citeproc-lua
--
local citeproc = {}
local engine
local util
if kpse then
engine = require("citeproc-engine")
util = require("citeproc-util")
else
engine = require("citeproc.engine")
util = require("citeproc.util")
end
citeproc.__VERSION__ = "0.4.8"
citeproc.new = engine.CiteProc.new
citeproc.util = util
return citeproc
|