summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts/citation-style-language/citeproc.lua
blob: 19f217535ed81b32378da264779ea95dbc51c019 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--[[
  Copyright (C) 2021 Zeping Lee
--]]


local citeproc = {}

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

citeproc.__VERSION__ = "0.1.0"

citeproc.new = engine.CiteProc.new
citeproc.parse_bib = bib.parse
citeproc.util = util

return citeproc