diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2021-11-01 13:48:36 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2021-11-01 13:48:36 +0100 |
commit | 1c02145d934c58c3db4de64ed1e16128ecb54c69 (patch) | |
tree | dc4fd5f214d25949cdf798f41f72e2c24b4235d6 /data | |
parent | 96e76d4cd475fe479ae6fb36bd6feee1cc6ff39f (diff) | |
download | pandoc-1c02145d934c58c3db4de64ed1e16128ecb54c69.tar.gz |
Lua: load module `pandoc.path` on startup
Previously the module always had to be loaded via
`require 'pandoc.path'`.
Closes: #7524
Diffstat (limited to 'data')
-rw-r--r-- | data/pandoc.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/pandoc.lua b/data/pandoc.lua index d4bd955aa..7e5ff799b 100644 --- a/data/pandoc.lua +++ b/data/pandoc.lua @@ -27,6 +27,7 @@ local M = {} -- Re-export bundled modules M.List = require 'pandoc.List' M.mediabag = require 'pandoc.mediabag' +M.path = require 'pandoc.path' M.system = require 'pandoc.system' M.types = require 'pandoc.types' M.utils = require 'pandoc.utils' |