diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2018-01-13 15:35:57 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2018-01-13 15:38:15 +0100 |
commit | 1d639456d3371a52a17dfa41bb81327d089b41f9 (patch) | |
tree | 51ac8342a7812f5c1f2e0dcbe8d6776b1b8a6bbc /data | |
parent | e08776b9d51a90e9f948f8f5dd2c3c2588d50942 (diff) | |
download | pandoc-1d639456d3371a52a17dfa41bb81327d089b41f9.tar.gz |
data/pandoc.lua: drop _VERSION
Having a _VERSION became superfluous, as this module is closely tied to
the pandoc version, which is available via PANDOC_VERSION.
Diffstat (limited to 'data')
-rw-r--r-- | data/pandoc.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/data/pandoc.lua b/data/pandoc.lua index b3cee4670..a46dd10be 100644 --- a/data/pandoc.lua +++ b/data/pandoc.lua @@ -22,9 +22,6 @@ THIS SOFTWARE. -- @author Albert Krewinkel -- @copyright © 2017–2018 Albert Krewinkel -- @license MIT -local M = { - _VERSION = "0.4.0" -} local List = require 'pandoc.List' |