summaryrefslogtreecommitdiff
path: root/biblio/citation-style-language/citeproc.lua
blob: 9f93901382f6c5dc7c4c0c4c41777ee4f0366eb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--
-- Copyright (c) 2021-2023 Zeping Lee
-- Released under the MIT license.
-- Repository: https://github.com/zepinglee/citeproc-lua
--

local citeproc = {}

local engine = require("citeproc-engine")
local util = require("citeproc-util")

citeproc.__VERSION__ = "0.4.0"

citeproc.new = engine.CiteProc.new
citeproc.util = util

return citeproc