Pandoc has long supported filters, which allow the pandoc
abstract syntax tree (AST) to be manipulated between the parsing
and the writing phase. Traditional pandoc
filters accept a JSON representation of the pandoc AST and
produce an altered JSON representation of the AST. They may be
written in any programming language, and invoked from pandoc using
the --filter option.
Although traditional filters are very flexible, they have a couple of disadvantages. First, there is some overhead in writing JSON to stdout and reading it from stdin (twice, once on each side of the filter). Second, whether a filter will work will depend on details of the user’s environment. A filter may require an interpreter for a certain programming language to be available, as well as a library for manipulating the pandoc AST in JSON form. One cannot simply provide a filter that can be used by anyone who has a certain version of the pandoc executable.
Starting with version 2.0, pandoc makes it possible to write filters in Lua without any external dependencies at all. A Lua interpreter (version 5.4) and a Lua library for creating pandoc filters is built into the pandoc executable. Pandoc data types are marshaled to Lua directly, avoiding the overhead of writing JSON to stdout and reading it from stdin.
Here is an example of a Lua filter that converts strong emphasis to small caps:
return {
Strong = function (elem)
return pandoc.SmallCaps(elem.content)
end,
}or equivalently,
function Strong(elem)
return pandoc.SmallCaps(elem.content)
endThis says: walk the AST, and when you find a Strong element, replace it with a SmallCaps element with the same content.
To run it, save it in a file, say smallcaps.lua,
and invoke pandoc with
--lua-filter=smallcaps.lua.
Here’s a quick performance comparison, converting the pandoc
manual (MANUAL.txt) to HTML, with versions of the same JSON filter
written in compiled Haskell (smallcaps) and
interpreted Python (smallcaps.py):
| Command | Time |
|---|---|
pandoc |
1.01s |
pandoc --filter ./smallcaps |
1.36s |
pandoc --filter ./smallcaps.py |
1.40s |
pandoc --lua-filter ./smallcaps.lua |
1.03s |
As you can see, the Lua filter avoids the substantial overhead associated with marshaling to and from JSON over a pipe.
Lua filters are tables with element names as keys and values consisting of functions acting on those elements.
Filters are expected to be put into separate files and are
passed via the --lua-filter command-line argument.
For example, if a filter is defined in a file
current-date.lua, then it would be applied like
this:
pandoc --lua-filter=current-date.lua -f markdown MANUAL.txt
The --lua-filter option may be supplied multiple
times. Pandoc applies all filters (including JSON filters
specified via --filter and Lua filters specified via
--lua-filter) in the order they appear on the command
line.
Pandoc expects each Lua file to return a filter. If there is no
value returned by the filter script, then pandoc will try to
generate a single filter by collecting all top-level functions
whose names correspond to those of pandoc elements (e.g.,
Str, Para, Meta, or
Pandoc). (That is why the two examples above are
equivalent.)
It is currently also possible to return a list of filters from a Lua file which are called sequentially. Before the walk method was made available, this was the only way to run multiple filters from one Lua file. However, returning a list of filters is now discouraged in favor of using the walk method, and this functionality may be removed at some point.
For each filter, the document is traversed and each element subjected to the filter. Elements for which the filter contains an entry (i.e. a function of the same name) are passed to Lua element filtering function. In other words, filter entries will be called for each corresponding element in the document, getting the respective element as input.
The return value of a filter function must be one of the following:
The function’s output must result in an element of the same type as the input. This means a filter function acting on an inline element must return either nil, an inline, or a list of inlines, and a function filtering a block element must return one of nil, a block, or a list of block elements. Pandoc will throw an error if this condition is violated.
If there is no function matching the element’s node type, then
the filtering system will look for a more general fallback
function. Two fallback functions are supported,
Inline and Block. Each matches elements
of the respective type.
Elements without matching functions are left untouched.
See module documentation for a list of pandoc elements.
For some filtering tasks, it is necessary to know the order in which elements occur in the document. It is not enough then to inspect a single element at a time.
There are two special function names, which can be used to define filters on lists of blocks or lists of inlines.
Inlines (inlines)inlines
argument passed to the function will be a List of Inline
elements for each call.
Blocks (blocks)blocks
argument passed to the function will be a List of Block
elements for each call.
These filter functions are special in that the result must either be nil, in which case the list is left unchanged, or must be a list of the correct type, i.e., the same type as the input argument. Single elements are not allowed as return values, as a single element in this context usually hints at a bug.
See “Remove spaces before normal citations” for an example.
This functionality has been added in pandoc 2.9.2.
The traversal order of filters can be selected by setting the
key traverse to either 'topdown' or
'typewise'; the default is
'typewise'.
Example:
local filter = {
traverse = 'topdown',
-- ... filter functions ...
}
return filterSupport for this was added in pandoc 2.17; previous versions
ignore the traverse setting.
Element filter functions within a filter set are called in a fixed order, skipping any which are not present:
Inlines filter
function,Blocks filter
function,Meta filter
function, and lastPandoc filter
function.It is still possible to force a different order by manually running the filters using the walk method. For example, if the filter for Meta is to be run before that for Str, one can write
function Pandoc(doc)
doc = doc:walk { Meta = Meta } -- (1)
return doc:walk { Str = Str } -- (2)
endIt is sometimes more natural to traverse the document tree depth-first from the root towards the leaves, and all in a single run.
For example, a block list [Plain [Str "a"], Para [Str "b"]]
will try the following filter functions, in order:
Blocks, Plain, Inlines,
Str, Para, Inlines,
Str.
Topdown traversals can be cut short by returning
false as a second value from the filter function. No
child-element of the returned element is processed in that
case.
For example, to exclude the contents of a footnote from being processed, one might write
traverse = 'topdown'
function Note (n)
return n, false
endPandoc passes additional data to Lua filters by setting global variables.
FORMATFORMAT is set to the format of the pandoc
writer being used (html5, latex, etc.),
so the behavior of a filter can be made conditional on the
eventual output format.
PANDOC_READER_OPTIONSPANDOC_WRITER_OPTIONSWriter or ByteStringWriter function, to
which the options are passed as the second function argument.
Since: pandoc 2.17
PANDOC_VERSION{2, 7, 3}. Use
tostring(PANDOC_VERSION) to produce a version string.
This variable is also set in custom writers.
PANDOC_API_VERSION{1, 17, 3}. Use
tostring(PANDOC_API_VERSION) to produce a version
string. This variable is also set in custom writers.
PANDOC_SCRIPT_FILEPANDOC_STATEpandocpandoc. The other
modules described herein are loaded as subfields under their
respective name.
lpeglpeg module, a package based
on Parsing Expression Grammars (PEG). It provides excellent
parsing utilities and is documented on the official LPeg homepage.
Pandoc uses a built-in version of the library, unless it has been
configured by the package maintainer to rely on a system-wide
installation.
reThe pandoc Lua module is loaded into the filter’s
Lua environment and provides a set of functions and constants to
make creation and manipulation of elements easier. The global
variable pandoc is bound to the module and should
generally not be overwritten for this reason.
Two major functionalities are provided by the module: element creator functions and access to some of pandoc’s main functionalities.
Element creator functions like Str,
Para, and Pandoc are designed to allow
easy creation of new elements that are simple to use and can be
read back from the Lua environment. Internally, pandoc uses these
functions to create the Lua objects which are passed to element
filter functions. This means that elements created via this module
will behave exactly as those elements accessible through the
filter function parameter.
Some pandoc functions have been made available in Lua:
walk_block and
walk_inline allow
filters to be applied inside specific block or inline
elements;read allows filters to
parse strings into pandoc documents;pipe runs an external
command with input from and output to strings;pandoc.mediabag
module allows access to the “mediabag,” which stores binary
content such as images that may be included in the final
document;pandoc.utils module
contains various utility functions.Initialization of pandoc’s Lua interpreter can be controlled by
placing a file init.lua in pandoc’s data directory. A
common use-case would be to load additional modules, or even to
alter default modules.
The following snippet is an example of code that might be
useful when added to init.lua. The snippet adds all
Unicode-aware functions defined in the text module to the
default string module, prefixed with the string
uc_.
for name, fn in pairs(require 'text') do
string['uc_' .. name] = fn
endThis makes it possible to apply these functions on strings
using colon syntax (mystring:uc_upper()).
Many errors can be avoided by performing static analysis. luacheck
may be used for this purpose. A Luacheck configuration file for
pandoc filters is available at https://github.com/rnwst/pandoc-luacheckrc.
William Lupton has written a Lua module with some handy functions for debugging Lua filters, including functions that can pretty-print the Pandoc AST elements manipulated by the filters: it is available at https://github.com/wlupton/pandoc-lua-logging.
It is possible to use a debugging interface to halt execution
and step through a Lua filter line by line as it is run inside
Pandoc. This is accomplished using the remote-debugging interface
of the package mobdebug.
Although mobdebug can be run from the terminal, it is more useful
run within the donation-ware Lua editor and IDE, ZeroBrane Studio.
ZeroBrane offers a REPL console and UI to step-through and view
all variables and state.
ZeroBrane doesn’t come with Lua 5.4 bundled, but it can debug
it, so you should install Lua 5.4, and then add mobdebug
and its dependency luasocket
using luarocks.
ZeroBrane can use your Lua 5.4 install by adding
path.lua = "/path/to/your/lua" in your ZeroBrane
settings file. Next, open your Lua filter in ZeroBrane, and add
require('mobdebug').start() at the line where you
want your breakpoint. Then make sure the Project > Lua
Interpreter is set to the “Lua” you added in settings and enable
“Start Debugger Server” see
detailed instructions here. Run Pandoc as you normally would,
and ZeroBrane should break at the correct line.
function Str (str)
str.text = string.upper(str.text)
endfunction Str (str)
str.text = string.upper(str.text)
return str
end© will be treated
as punctuation, and matched by the pattern %p, on
CP-1252 locales, but not on systems using a UTF-8 locale.
A reliable way to ensure unified handling of patterns and
character classes is to use the “C” locale by adding
os.setlocale 'C' to the top of the Lua script.
string library treats each byte as a single
character. A function like string.upper will not have
the intended effect when applied to words with non-ASCII
characters. Similarly, a pattern like [☃] will match
any of the bytes \240, \159,
\154, and \178, but
won’t match the “snowman” Unicode character.
Use the pandoc.text module for
Unicode-aware transformation, and consider using using the lpeg or
re library for pattern matching.
The following filters are presented as examples. A repository of useful Lua filters (which may also serve as good examples) is available at https://github.com/pandoc/lua-filters.
The following filter converts the string
{{helloworld}} into emphasized text “Hello,
World”.
return {
Str = function (elem)
if elem.text == "{{helloworld}}" then
return pandoc.Emph {pandoc.Str "Hello, World"}
else
return elem
end
end,
}For LaTeX, wrap an image in LaTeX snippets which cause the image to be centered horizontally. In HTML, the image element’s style attribute is used to achieve centering.
-- Filter images with this function if the target format is LaTeX.
if FORMAT:match 'latex' then
function Image (elem)
-- Surround all images with image-centering raw LaTeX.
return {
pandoc.RawInline('latex', '\\hfill\\break{\\centering'),
elem,
pandoc.RawInline('latex', '\\par}')
}
end
end
-- Filter images with this function if the target format is HTML
if FORMAT:match 'html' then
function Image (elem)
-- Use CSS style to center image
elem.attributes.style = 'margin:auto; display: block;'
return elem
end
endThis filter sets the date in the document’s metadata to the current date, if a date isn’t already set:
function Meta(m)
if m.date == nil then
m.date = os.date("%B %e, %Y")
return m
end
endThis filter removes all spaces preceding an “author-in-text”
citation. In Markdown, author-in-text citations (e.g.,
@citekey), must be preceded by a space. If these
spaces are undesired, they must be removed with a filter.
local function is_space_before_author_in_text(spc, cite)
return spc and spc.t == 'Space'
and cite and cite.t == 'Cite'
-- there must be only a single citation, and it must have
-- mode 'AuthorInText'
and #cite.citations == 1
and cite.citations[1].mode == 'AuthorInText'
end
function Inlines (inlines)
-- Go from end to start to avoid problems with shifting indices.
for i = #inlines-1, 1, -1 do
if is_space_before_author_in_text(inlines[i], inlines[i+1]) then
inlines:remove(i)
end
end
return inlines
endLua filter functions are run in the order
Inlines → Blocks → Meta → Pandoc.
Passing information from a higher level (e.g., metadata) to a lower level (e.g., inlines) is still possible by using two filters living in the same file:
local vars = {}
local function get_vars (meta)
for k, v in pairs(meta) do
if pandoc.utils.type(v) == 'Inlines' then
vars["%" .. k .. "%"] = {table.unpack(v)}
end
end
end
local function replace (el)
if vars[el.text] then
return pandoc.Span(vars[el.text])
else
return el
end
end
function Pandoc(doc)
return doc:walk { Meta = get_vars }:walk { Str = replace }
endIf the contents of file occupations.md are
---
name: Samuel Q. Smith
occupation: Professor of Oenology
---
Name
: %name%
Occupation
: %occupation%then running
pandoc --lua-filter=meta-vars.lua occupations.md will
output:
<dl>
<dt>Name</dt>
<dd><p><span>Samuel Q. Smith</span></p>
</dd>
<dt>Occupation</dt>
<dd><p><span>Professor of Oenology</span></p>
</dd>
</dl>Note that the placeholders must not contain any spaces, otherwise they will turn into two separate Str elements and the filter won’t work.
MANUAL.txt for man pagesThis is the filter we use when converting
MANUAL.txt to man pages. It converts level-1 headers
to uppercase (using walk to transform inline
elements inside headers), removes footnotes, and replaces links
with regular text.
-- we use pandoc.text to get a UTF-8 aware 'upper' function
local text = pandoc.text
function Header(el)
if el.level == 1 then
return el:walk {
Str = function(el)
return pandoc.Str(text.upper(el.text))
end
}
end
end
function Link(el)
return el.content
end
function Note(el)
return {}
endThis filter extracts all the numbered examples, section
headers, block quotes, and figures from a document, in addition to
any divs with class handout. (Note that only blocks
at the “outer level” are included; this ignores blocks inside
nested constructs, like list items.)
-- creates a handout from an article, using its headings,
-- blockquotes, numbered examples, figures, and any
-- Divs with class "handout"
function Pandoc(doc)
local hblocks = {}
for i,el in pairs(doc.blocks) do
if (el.t == "Div" and el.classes[1] == "handout") or
(el.t == "BlockQuote") or
(el.t == "OrderedList" and el.style == "Example") or
(el.t == "Para" and #el.c == 1 and el.c[1].t == "Image") or
(el.t == "Header") then
table.insert(hblocks, el)
end
end
return pandoc.Pandoc(hblocks, doc.meta)
endThis filter counts the words in the body of a document
(omitting metadata like titles and abstracts), including words in
code. It should be more accurate than wc -w run
directly on a Markdown document, since the latter will count
markup characters, like the # in front of an ATX
header, or tags in HTML documents, as words. To run it,
pandoc --lua-filter wordcount.lua myfile.md.
-- counts words in a document
words = 0
wordcount = {
Str = function(el)
-- we don't count a word if it's entirely punctuation:
if el.text:match("%P") then
words = words + 1
end
end,
Code = function(el)
_,n = el.text:gsub("%S+","")
words = words + n
end,
CodeBlock = function(el)
_,n = el.text:gsub("%S+","")
words = words + n
end
}
function Pandoc(el)
-- skip metadata, just count body:
el.blocks:walk(wordcount)
print(words .. " words in body")
os.exit(0)
endThis filter creates a document that contains the following
table with 5 columns. It serves as a working example of how to use
the pandoc.Table
constructor.
| This | is my | table | header | |
|---|---|---|---|---|
| Cell 1 | Cell 2 | Cell 3 | ||
| Cell 4 | Cell 5 | Cell 6 | ||
| This is my table footer. | ||||
Note that:
The number of columns in the resulting Table element is
equal to the number of entries in the colspecs
parameter.
A ColSpec object must contain the cell alignment, but the column width is optional.
A TableBody object is
specified using a Lua table in the bodies parameter
because there is no pandoc.TableBody
constructor.
function Pandoc ()
local caption = pandoc.Caption( "This is my table caption." )
local colspecs = {
{ pandoc.AlignLeft },
{ pandoc.AlignDefault },
{ pandoc.AlignCenter },
{ pandoc.AlignRight },
{ pandoc.AlignDefault }
}
local head = pandoc.TableHead{
pandoc.Row{
pandoc.Cell( "This" ),
pandoc.Cell( "is my" ),
pandoc.Cell( "table" ),
pandoc.Cell( "header" )
}
}
local bodies = {
{
attr={},
body={
pandoc.Row{
pandoc.Cell( "Cell 1" ),
pandoc.Cell( "Cell 2" ),
pandoc.Cell( "Cell 3" )
},
pandoc.Row{
pandoc.Cell( "Cell 4" ),
pandoc.Cell( "Cell 5" ),
pandoc.Cell( "Cell 6" )
}
},
head={},
row_head_columns=0
}
}
local foot = pandoc.TableFoot{
pandoc.Row{
pandoc.Cell( "This is my table footer.", pandoc.AlignDefault, 1, 4 )
}
}
return pandoc.Pandoc {
pandoc.Table(caption, colspecs, head, bodies, foot)
}
endThis filter replaces code blocks with class abc
with images created by running their contents through
abcm2ps and ImageMagick’s convert. (For
more on ABC notation, see https://abcnotation.com.)
Images are added to the mediabag. For output to binary formats,
pandoc will use images in the mediabag. For textual formats, use
--extract-media to specify a directory where the
files in the mediabag will be written, or (for HTML only) use
--embed-resources.
-- Pandoc filter to process code blocks with class "abc" containing
-- ABC notation into images.
--
-- * Assumes that abcm2ps and ImageMagick's convert are in the path.
-- * For textual output formats, use --extract-media=abc-images
-- * For HTML formats, you may alternatively use --embed-resources
local filetypes = { html = {"png", "image/png"}
, latex = {"pdf", "application/pdf"}
}
local filetype = filetypes[FORMAT][1] or "png"
local mimetype = filetypes[FORMAT][2] or "image/png"
local function abc2eps(abc, filetype)
local eps = pandoc.pipe("abcm2ps", {"-q", "-O", "-", "-"}, abc)
local final = pandoc.pipe("convert", {"-", filetype .. ":-"}, eps)
return final
end
function CodeBlock(block)
if block.classes[1] == "abc" then
local img = abc2eps(block.text, filetype)
local fname = pandoc.sha1(img) .. "." .. filetype
pandoc.mediabag.insert(fname, mimetype, img)
return pandoc.Para{ pandoc.Image({pandoc.Str("abc tune")}, fname) }
end
endThis filter converts raw LaTeX TikZ environments into
images. It works with both PDF and HTML output. The TikZ
code is compiled to an image using pdflatex, and the
image is converted from pdf to svg format using pdf2svg,
so both of these must be in the system path. Converted images are
cached in the working directory and given filenames based on a
hash of the source, so that they need not be regenerated each time
the document is built. (A more sophisticated version of this might
put these in a special cache directory.)
local system = require 'pandoc.system'
local tikz_doc_template = [[
\documentclass{standalone}
\usepackage{xcolor}
\usepackage{tikz}
\begin{document}
\nopagecolor
%s
\end{document}
]]
local function tikz2image(src, filetype, outfile)
system.with_temporary_directory('tikz2image', function (tmpdir)
system.with_working_directory(tmpdir, function()
local f = io.open('tikz.tex', 'w')
f:write(tikz_doc_template:format(src))
f:close()
os.execute('pdflatex tikz.tex')
if filetype == 'pdf' then
os.rename('tikz.pdf', outfile)
else
os.execute('pdf2svg tikz.pdf ' .. outfile)
end
end)
end)
end
extension_for = {
html = 'svg',
html4 = 'svg',
html5 = 'svg',
latex = 'pdf',
beamer = 'pdf' }
local function file_exists(name)
local f = io.open(name, 'r')
if f ~= nil then
io.close(f)
return true
else
return false
end
end
local function starts_with(start, str)
return str:sub(1, #start) == start
end
function RawBlock(el)
if starts_with('\\begin{tikzpicture}', el.text) then
local filetype = extension_for[FORMAT] or 'svg'
local fbasename = pandoc.sha1(el.text) .. '.' .. filetype
local fname = system.get_working_directory() .. '/' .. fbasename
if not file_exists(fname) then
tikz2image(el.text, filetype, fname)
end
return pandoc.Para({pandoc.Image({}, fbasename)})
else
return el
end
endExample of use:
pandoc --lua-filter tikz.lua -s -o cycle.html <<EOF
Here is a diagram of the cycle:
\begin{tikzpicture}
\def \n {5}
\def \radius {3cm}
\def \margin {8} % margin in angles, depends on the radius
\foreach \s in {1,...,\n}
{
\node[draw, circle] at ({360/\n * (\s - 1)}:\radius) {$\s$};
\draw[->, >=latex] ({360/\n * (\s - 1)+\margin}:\radius)
arc ({360/\n * (\s - 1)+\margin}:{360/\n * (\s)-\margin}:\radius);
}
\end{tikzpicture}
EOF
This section describes the types of objects available to Lua filters. See the pandoc module for functions to create these objects.
Pandoc document
Values of this type can be created with the pandoc.Pandoc constructor.
Pandoc values are equal in Lua if and only if they are equal in
Haskell.
normalize(self)
Perform a normalization of Pandoc documents. E.g., multiple successive spaces are collapsed, and tables are normalized, so that all rows and columns contain the same number of cells.
Parameters:
selfResults:
walk(self, lua_filter)
Applies a Lua filter to the Pandoc element. Just as for
full-document filters, the order in which elements are traversed
can be controlled by setting the traverse field of
the filter; see the section on traversal order. Returns a (deep) copy
on which the filter has been applied: the original element is left
untouched.
Parameters:
selflua_filterResult:
Usage:
-- returns `pandoc.Pandoc{pandoc.Para{pandoc.Str 'Bye'}}`
return pandoc.Pandoc{pandoc.Para('Hi')}:walk {
Str = function (_) return 'Bye' end,
}
Meta information on a document; string-indexed collection of MetaValues.
Values of this type can be created with the pandoc.Meta constructor. Meta
values are equal in Lua if and only if they are equal in
Haskell.
Document meta information items. This is not a separate type, but describes a set of types that can be used in places were a MetaValue is expected. The types correspond to the following Haskell type constructors:
The corresponding constructors pandoc.MetaBool, pandoc.MetaString, pandoc.MetaInlines, pandoc.MetaBlocks, pandoc.MetaList, and pandoc.MetaMap can be used
to ensure that a value is treated in the intended way. E.g., an
empty table is normally treated as a MetaMap, but can
be made into an empty MetaList by calling
pandoc.MetaList{}. However, the same can be
accomplished by using the generic functions like
pandoc.List, pandoc.Inlines, or
pandoc.Blocks.
Use the function pandoc.utils.type to
get the type of a metadata value.
Block values are equal in Lua if and only if they are equal in Haskell.
walk(self, lua_filter)
Applies a Lua filter to the block element. Just as for
full-document filters, the order in which elements are traversed
can be controlled by setting the traverse field of
the filter; see the section on traversal order. Returns a (deep) copy
on which the filter has been applied: the original element is left
untouched.
Note that the filter is applied to the subtree, but not to the
self block element. The rationale is that otherwise
the element could be deleted by the filter, or replaced with
multiple block elements, which might lead to possibly unexpected
results.
Parameters:
selflua_filterResult:
Usage:
-- returns `pandoc.Para{pandoc.Str 'Bye'}`
return pandoc.Para('Hi'):walk {
Str = function (_) return 'Bye' end,
}
A block quote element.
Values of this type can be created with the pandoc.BlockQuote
constructor.
Fields:
contenttag, tBlockQuote (string)
A bullet list.
Values of this type can be created with the pandoc.BulletList
constructor.
Fields:
Block of code.
Values of this type can be created with the pandoc.CodeBlock
constructor.
Fields:
textattridentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tCodeBlock (string)
Definition list, containing terms and their explanation.
Values of this type can be created with the pandoc.DefinitionList
constructor.
Fields:
contenttag, tDefinitionList (string)
Generic block container with attributes.
Values of this type can be created with the pandoc.Div constructor.
Fields:
contentattridentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tDiv (string)
Figure with caption and arbitrary block contents.
Values of this type can be created with the pandoc.Figure
constructor.
Fields:
contentcaptionattridentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tFigure (string)
A horizontal rule.
Values of this type can be created with the pandoc.HorizontalRule
constructor.
Fields:
tag, tHorizontalRule (string)
A line block, i.e. a list of lines, each separated from the next by a newline.
Values of this type can be created with the pandoc.LineBlock
constructor.
Fields:
An ordered list.
Values of this type can be created with the pandoc.OrderedList
constructor.
Fields:
contentlistAttributesstartlistAttributes.start (integer)
stylelistAttributes.style (string)
delimiterlistAttributes.delimiter (string)
tag, tOrderedList (string)
A paragraph.
Values of this type can be created with the pandoc.Para constructor.
Fields:
contenttag, tPara (string)
Plain text, not a paragraph.
Values of this type can be created with the pandoc.Plain
constructor.
Fields:
contenttag, tPlain (string)
Raw content of a specified format.
Values of this type can be created with the pandoc.RawBlock
constructor.
Fields:
formattexttag, tRawBlock (string)
A table.
Values of this type can be created with the pandoc.Table
constructor.
Fields:
attrcaptioncolspecsheadbodiesfootidentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tTable (string)
A table cell is a list of blocks.
Alignment is a string
value indicating the horizontal alignment of a table column.
AlignLeft, AlignRight, and
AlignCenter leads cell content to be left-aligned,
right-aligned, and centered, respectively. The default alignment
is AlignDefault (often equivalent to centered).
List of Block elements, with the same methods as a generic List. It is usually not necessary to create values of this type in user scripts, as pandoc can convert other types into Blocks wherever a value of this type is expected:
Lists of type Blocks share all methods available
in generic lists, see the pandoc.List
module.
Additionally, the following methods are available on Blocks values:
walk(self, lua_filter)
Applies a Lua filter to the Blocks list. Just as for
full-document filters, the order in which elements are traversed
can be controlled by setting the traverse field of
the filter; see the section on traversal order. Returns a (deep) copy
on which the filter has been applied: the original list is left
untouched.
Parameters:
selflua_filterResult:
Usage:
-- returns `pandoc.Blocks{pandoc.Para('Salve!')}`
return pandoc.Blocks{pandoc.Plain('Salve!)}:walk {
Plain = function (p) return pandoc.Para(p.content) end,
}
Inline values are equal in Lua if and only if they are equal in Haskell.
walk(self, lua_filter)
Applies a Lua filter to the Inline element. Just as for
full-document filters, the order in which elements are traversed
can be controlled by setting the traverse field of
the filter; see the section on traversal order. Returns a (deep) copy
on which the filter has been applied: the original element is left
untouched.
Note that the filter is applied to the subtree, but not to the
self inline element. The rationale is that otherwise
the element could be deleted by the filter, or replaced with
multiple inline elements, which might lead to possibly unexpected
results.
Parameters:
selflua_filterResult:
Usage:
-- returns `pandoc.SmallCaps('SPQR)`
return pandoc.SmallCaps('spqr'):walk {
Str = function (s) return string.upper(s.text) end,
}
Citation.
Values of this type can be created with the pandoc.Cite constructor.
Fields:
Inline code
Values of this type can be created with the pandoc.Code constructor.
Fields:
textattridentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tCode (string)
Emphasized text
Values of this type can be created with the pandoc.Emph constructor.
Fields:
contenttag, tEmph (string)
Image: alt text (list of inlines), target
Values of this type can be created with the pandoc.Image
constructor.
Fields:
captionsrctitleattridentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tImage (string)
Hard line break
Values of this type can be created with the pandoc.LineBreak
constructor.
Fields:
tag, tLineBreak (string)
Hyperlink: alt text (list of inlines), target
Values of this type can be created with the pandoc.Link constructor.
Fields:
attrcontenttargettitleidentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tLink (string)
TeX math (literal)
Values of this type can be created with the pandoc.Math constructor.
Fields:
mathtypeInlineMath) or on a separate line
(DisplayMath) (string)
texttag, tMath (string)
Footnote or endnote
Values of this type can be created with the pandoc.Note constructor.
Fields:
contenttag, tNote (string)
Quoted text
Values of this type can be created with the pandoc.Quoted
constructor.
Fields:
quotetypeSingleQuote or
DoubleQuote (string)
contenttag, tQuoted (string)
Raw inline
Values of this type can be created with the pandoc.RawInline
constructor.
Fields:
formattexttag, tRawInline (string)
Small caps text
Values of this type can be created with the pandoc.SmallCaps
constructor.
Fields:
contenttag, tSmallCaps (string)
Soft line break
Values of this type can be created with the pandoc.SoftBreak
constructor.
Fields:
tag, tSoftBreak (string)
Inter-word space
Values of this type can be created with the pandoc.Space
constructor.
Fields:
tag, tSpace (string)
Generic inline container with attributes
Values of this type can be created with the pandoc.Span constructor.
Fields:
attrcontentidentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
tag, tSpan (string)
Text
Values of this type can be created with the pandoc.Str constructor.
Fields:
texttag, tStr (string)
Strikeout text
Values of this type can be created with the pandoc.Strikeout
constructor.
Fields:
contenttag, tStrikeout (string)
Strongly emphasized text
Values of this type can be created with the pandoc.Strong
constructor.
Fields:
contenttag, tStrong (string)
Subscripted text
Values of this type can be created with the pandoc.Subscript
constructor.
Fields:
contenttag, tSubscript (string)
Superscripted text
Values of this type can be created with the pandoc.Superscript
constructor.
Fields:
contenttag, tSuperscript (string)
Underlined text
Values of this type can be created with the pandoc.Underline
constructor.
Fields:
contenttag, tUnderline (string)
List of Inline elements, with the same methods as a generic List. It is usually not necessary to create values of this type in user scripts, as pandoc can convert other types into Inlines wherever a value of this type is expected:
Lists of type Inlines share all methods available
in generic lists, see the pandoc.List
module.
Additionally, the following methods are available on Inlines values:
walk(self, lua_filter)
Applies a Lua filter to the Inlines list. Just as for full-document filters, the order in which elements are handled are Inline → Inlines → Block → Blocks. The filter is applied to all list items and to the list itself. Returns a (deep) copy on which the filter has been applied: the original list is left untouched.
Parameters:
selflua_filterResult:
Usage:
-- returns `pandoc.Inlines{pandoc.SmallCaps('SPQR')}`
return pandoc.Inlines{pandoc.Emph('spqr')}:walk {
Str = function (s) return string.upper(s.text) end,
Emph = function (e) return pandoc.SmallCaps(e.content) end,
}
A set of element attributes. Values of this type can be created
with the pandoc.Attr
constructor. For convenience, it is usually not necessary to
construct the value directly if it is part of an element, and it
is sufficient to pass an HTML-like table. E.g., to create a span
with identifier “text” and classes “a” and “b”, one can write:
local span = pandoc.Span('text', {id = 'text', class = 'a b'})
This also works when using the attr setter:
local span = pandoc.Span 'text'
span.attr = {id = 'text', class = 'a b', other_attribute = '1'}
Attr values are equal in Lua if and only if they are equal in Haskell.
Fields:
identifierclassesattributesList of key/value pairs. Values can be accessed by using keys as indices to the list table.
Attributes values are equal in Lua if and only if they are equal in Haskell.
The caption of a table, with an optional short caption.
Fields:
A table cell.
Fields:
attralignmentcontentscol_spanrow_spanidentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
Single citation entry
Values of this type can be created with the pandoc.Citation
constructor.
Citation values are equal in Lua if and only if they are equal in Haskell.
Fields:
Column alignment and width specification for a single table column.
This is a pair, i.e., a plain table, with the following components:
List attributes
Values of this type can be created with the pandoc.ListAttributes
constructor.
Fields:
startstyleDefaultStyle, Example,
Decimal, LowerRoman,
UpperRoman, LowerAlpha, and
UpperAlpha (string)
delimiterDefaultDelim,
Period, OneParen, and
TwoParens (string)
A table row.
Fields:
A body of a table, with an intermediate head and the specified number of row header columns.
Fields:
The head of a table.
Fields:
attrrowsidentifierattr.identifier (string)
classesattr.classes (List
of strings)
attributesattr.attributes (Attributes)
Pandoc reader options
Fields:
abbreviationscolumnsdefault_image_extensionextensionsindented_code_classesstandalonestrip_commentstab_stoptrack_changesaccept-changes, reject-changes, and
all-changes (string)
Pandoc writer options
Fields:
chunk_templatecite_methodcolumnsdpiemail_obfuscationepub_chapter_levelepub_fontsepub_metadataepub_subdirectoryextensionshighlight_stylepandoc --print-highlight-style=... for an example
structure. The value nil means that no highlighting
is used. (table|nil)
html_math_methodmethod and url. (string|table)
html_q_tags<q> tags for quotes in HTML (boolean)
identifier_prefixincrementallistingsnumber_offsetnumber_sectionsprefer_asciireference_docreference_linksreference_locationsection_divssetext_headersslide_leveltab_stoptable_of_contentstemplatetoc_depthtop_level_divisiontop-level may be omitted when setting this
value. (string)
variableswrap_textwrap- prefix may be omitted when
setting this value. (string)
The state used by pandoc to collect information and make it available to readers and writers.
Fields:
input_filesoutput_filelogrequest_headersresource_pathsource_urluser_data_dirtraceverbosityINFO, WARNING,
ERROR (string)
Reflowable plain-text document. A Doc value can be rendered and reflown to fit a given column width.
The pandoc.layout module
can be used to create and modify Doc values. All functions in that
module that take a Doc value as their first argument are also
available as Doc methods. E.g.,
(pandoc.layout.literal 'text'):render().
If a string is passed to a function expecting a Doc, then the string is treated as a literal value. I.e., the following two lines are equivalent:
test = pandoc.layout.quotes(pandoc.layout.literal 'this')
test = pandoc.layout.quotes('this')..Concatenate two Doc elements.
+Concatenate two Docs, inserting a reflowable space
between them.
/If a and b are Doc
elements, then a / b puts a above
b.
//If a and b are Doc
elements, then a // b puts a above
b, inserting a blank line between them.
A list is any Lua table with integer indices. Indices start at
one, so if alist = {'value'} then
alist[1] == 'value'.
Lists, when part of an element, or when generated during
marshaling, are made instances of the pandoc.List
type for convenience. The pandoc.List type is defined
in the pandoc.List
module. See there for available methods.
Values of this type can be created with the pandoc.List constructor,
turning a normal Lua table into a List.
A pandoc log message. Objects have no fields, but can be
converted to a string via tostring.
A simple table is a table structure which resembles the old
(pre pandoc 2.10) Table type. Bi-directional conversion from and
to Tables is possible with the pandoc.utils.to_simple_table
and pandoc.utils.from_simple_table
function, respectively. Instances of this type can also be created
directly with the pandoc.SimpleTable
constructor.
Fields:
Opaque type holding a compiled template.
A version object. This represents a software version like
“2.7.3”. The object behaves like a numerically indexed table,
i.e., if version represents the version
2.7.3, then
version[1] == 2
version[2] == 7
version[3] == 3
#version == 3 -- length
Comparisons are performed element-wise, i.e.
Version '1.12' > Version '1.9'
Values of this type can be created with the pandoc.types.Version
constructor.
must_be_at_leastmust_be_at_least(actual, expected [, error_message])
Raise an error message if the actual version is older than the
expected version; does nothing if actual is equal to
or newer than the expected version.
Parameters:
actualexpectederror_message"expected version %s or newer, got %s".
Usage:
PANDOC_VERSION:must_be_at_least '2.7.3'
PANDOC_API_VERSION:must_be_at_least(
'1.17.4',
'pandoc-types is too old: expected version %s, got %s'
)
Part of a document; usually chunks are each written to a separate file.
Fields:
headingidlevelnumbersection_numberpathupprevnextunlistedcontentsA Pandoc document divided into Chunks.
The table of contents info in field toc is
rose-tree structure represented as a list. The node item is always
placed at index 0; subentries make up the rest of the
list. Each node item contains the fields title (Inlines), number
(string|nil), id (string), path
(string), and level (integer).
Fields:
Fields and functions for pandoc scripts; includes constructors for document tree elements, functions to parse text in a given format, and functions to filter and modify a subtree.
Set of formats that pandoc can parse. All keys in this table
can be used as the format value in
pandoc.read. (table)
Set of formats that pandoc can generate. All keys in this table
can be used as the format value in
pandoc.write. (table)
Pandoc (blocks[, meta])
Parameters:
Returns:
Meta (meta)
Parameters:
metaReturns:
MetaBlocks (content)
Creates a value to be used as a MetaBlocks value in meta data;
creates a copy of the input list via pandoc.Blocks,
discarding all non-list keys.
Parameters:
contentReturns:
MetaBool (bool)
Parameters:
boolReturns:
MetaInlines (inlines)
Creates a value to be used as a MetaInlines value in meta data;
creates a copy of the input list via pandoc.Inlines,
discarding all non-list keys.
Parameters:
inlinesReturns:
MetaList (values)
Creates a value to be used as a MetaList in meta data; creates
a copy of the input list via pandoc.List, discarding
all non-list keys.
Parameters:
Returns:
MetaMap (key_value_map)
Creates a value to be used as a MetaMap in meta data; creates a copy of the input table, keeping only pairs with string keys and discards all other keys.
Parameters:
key_value_mapReturns:
MetaString (s)
Creates a value to be used as a MetaString in meta data; this is the identity function for boolean values and exists only for completeness.
Parameters:
sReturns:
BlockQuote (content)
Creates a block quote element
Parameters:
contentReturns:
BulletList (items)
Creates a bullet list.
Parameters:
itemsReturns:
CodeBlock (text[, attr])
Creates a code block element.
Parameters:
textattrReturns:
DefinitionList (content)
Creates a definition list, containing terms and their explanation.
Parameters:
contentReturns:
Div (content[, attr])
Creates a div element
Parameters:
Returns:
Figure (content[, caption[, attr]])
Creates a Figure element.
Parameters:
contentcaptionattrReturns:
Header (level, content[, attr])
Creates a header element.
Parameters:
Returns:
HorizontalRule ()
Creates a horizontal rule.
Returns:
LineBlock (content)
Creates a line block element.
Parameters:
contentReturns:
OrderedList (items[, listAttributes])
Creates an ordered list.
Parameters:
itemslistAttributesReturns:
Para (content)
Creates a para element.
Parameters:
contentReturns:
Plain (content)
Creates a plain element.
Parameters:
contentReturns:
RawBlock (format, text)
Creates a raw content block of the specified format.
Parameters:
formattextReturns:
Table (caption, colspecs, head, bodies, foot[, attr])
Creates a table element.
Parameters:
captioncolspecsheadbodiesfootattrReturns:
Blocks (block_like_elements)
Creates a Blocks list.
Parameters:
block_like_elementsReturns:
Cite (content, citations)
Creates a Cite inline element
Parameters:
contentcitationsReturns:
Code (code[, attr])
Creates a Code inline element
Parameters:
codeattrReturns:
Emph (content)
Creates an inline element representing emphasized text.
Parameters:
contentReturns:
Image (caption, src[, title[, attr]])
Creates an Image element
Parameters:
captionsrctitleattrReturns:
LineBreak ()
Create a LineBreak inline element
Returns:
Link (content, target[, title[, attr]])
Creates a link inline element, usually a hyperlink.
Parameters:
contenttargettitleattrReturns:
Math (mathtype, text)
Creates a Math element, either inline or displayed.
Parameters:
mathtypetextReturns:
Note (content)
Creates a Note inline element
Parameters:
contentReturns:
Quoted (quotetype, content)
Creates a Quoted inline element given the quote type and quoted content.
Parameters:
quotetypecontentReturns:
RawInline (format, text)
Creates a raw inline element
Parameters:
formattextReturns:
SmallCaps (content)
Creates text rendered in small caps
Parameters:
contentReturns:
SoftBreak ()
Creates a SoftBreak inline element.
Returns:
Space ()
Create a Space inline element
Returns:
Span (content[, attr])
Creates a Span inline element
Parameters:
Returns:
Str (text)
Creates a Str inline element
Parameters:
textReturns:
Strikeout (content)
Creates text which is struck out.
Parameters:
contentReturns:
Strong (content)
Creates a Strong element, whose text is usually displayed in a bold font.
Parameters:
contentReturns:
Subscript (content)
Creates a Subscript inline element
Parameters:
contentReturns:
Superscript (content)
Creates a Superscript inline element
Parameters:
contentReturns:
Underline (content)
Creates an Underline inline element
Parameters:
contentReturns:
Inlines (inline_like_elements)
Converts its argument into an Inlines list:
s within the list is
treated as pandoc.Str(s);Str-wrapped words, treating
interword spaces as Spaces or
SoftBreaks.Parameters:
inline_like_elementsReturns:
Attr ([identifier[, classes[, attributes]]])
Create a new set of attributes
Parameters:
identifierclassesattributesReturns:
Caption ([long[, short]])
Creates a new Caption object.
Parameters:
Returns:
Since: 3.6.1
Cell (blocks[, align[, rowspan[, colspan[, attr]]]])
Create a new table cell.
Parameters:
blocksalignAlignDefault (Alignment)
rowspan1
(integer)
colspan1
(integer)
attrReturns:
AttributeList (attribs)
Parameters:
attribsReturns:
Citation (id, mode[, prefix[, suffix[, note_num[, hash]]]])
Creates a single citation.
Parameters:
idmodeprefixsuffixnote_numhashReturns:
ListAttributes ([start[, style[, delimiter]]])
Creates a new ListAttributes object.
Parameters:
startstyledelimiterReturns:
Row ([cells[, attr]])
Creates a table row.
Parameters:
Returns:
TableBody ([body[, head[, row_head_columns[, attr]]]])
Creates a table body.
Parameters:
bodyheadrow_head_columnsattrReturns:
TableFoot ([rows[, attr]])
Creates a table foot.
Parameters:
Returns:
TableHead ([rows[, attr]])
Creates a table head.
Parameters:
Returns:
SimpleTable (caption, align, widths, header, rows)
Usage:
local caption = "Overview"
local aligns = {pandoc.AlignDefault, pandoc.AlignDefault}
local widths = {0, 0} -- let pandoc determine col widths
local headers = {{pandoc.Plain({pandoc.Str "Language"})},
{pandoc.Plain({pandoc.Str "Typing"})}}
local rows = {
{{pandoc.Plain "Haskell"}, {pandoc.Plain "static"}},
{{pandoc.Plain "Lua"}, {pandoc.Plain "Dynamic"}},
}
simple_table = pandoc.SimpleTable(
caption,
aligns,
widths,
headers,
rows
)
Parameters:
captionalignwidthsheaderrowsReturns:
Author name is mentioned in the text.
See also: Citation
Author name is suppressed.
See also: Citation
NormalCitationDefault citation style is used.
See also: Citation
DisplayMathMath style identifier, marking that the formula should be show in “display” style, i.e., on a separate line.
See also: Math
InlineMathMath style identifier, marking that the formula should be show inline.
See also: Math
SingleQuoteQuote type used with Quoted, indicating that the string is enclosed in single quotes.
See also: Quoted
DoubleQuoteQuote type used with Quoted, indicating that the string is enclosed in double quotes.
See also: Quoted
AlignLeftTable cells aligned left.
See also: Table
AlignRightTable cells right-aligned.
See also: Table
AlignCenterTable cell content is centered.
See also: Table
AlignDefaultTable cells are alignment is unaltered.
See also: Table
DefaultDelimDefault list number delimiters are used.
See also: ListAttributes
PeriodList numbers are delimited by a period.
See also: ListAttributes
OneParenList numbers are delimited by a single parenthesis.
See also: ListAttributes
TwoParensList numbers are delimited by a double parentheses.
See also: ListAttributes
DefaultStyleList are numbered in the default style
See also: ListAttributes
ExampleList items are numbered as examples.
See also: ListAttributes
DecimalList are numbered using decimal integers.
See also: ListAttributes
LowerRomanList are numbered using lower-case roman numerals.
See also: ListAttributes
UpperRomanList are numbered using upper-case roman numerals
See also: ListAttributes
LowerAlphaList are numbered using lower-case alphabetic characters.
See also: ListAttributes
UpperAlphaList are numbered using upper-case alphabetic characters.
See also: ListAttributes
sha1Alias for pandoc.utils.sha1
(DEPRECATED, use pandoc.utils.sha1 instead).
ReaderOptions (opts)Creates a new ReaderOptions value.
Parameters
optsReturns: new ReaderOptions object
Usage:
-- copy of the reader options that were defined on the command line.
local cli_opts = pandoc.ReaderOptions(PANDOC_READER_OPTIONS)
-- default reader options, but columns set to 66.
local short_colums_opts = pandoc.ReaderOptions {columns = 66}
WriterOptions (opts)Creates a new WriterOptions value.
Parameters
optsReturns: new WriterOptions object
Usage:
-- copy of the writer options that were defined on the command line.
local cli_opts = pandoc.WriterOptions(PANDOC_WRITER_OPTIONS)
-- default writer options, but DPI set to 300.
local short_colums_opts = pandoc.WriterOptions {dpi = 300}
pipe (command, args, input)Runs command with arguments, passing it some input, and returns the output.
Parameters:
commandargsinputReturns:
Raises:
command,
error_code, and output is thrown if the
command exits with a non-zero error code.Usage:
local output = pandoc.pipe("sed", {"-e","s/a/b/"}, "abc")
walk_block (element, filter)Apply a filter inside a block element, walking its contents. Returns a (deep) copy on which the filter has been applied: the original element is left untouched.
Parameters:
elementfilterReturns: the transformed block element
walk_inline (element, filter)Apply a filter inside an inline element, walking its contents. Returns a (deep) copy on which the filter has been applied: the original element is left untouched.
Parameters:
elementfilterReturns: the transformed inline element
with_state (options, callback)Runs a function with a modified pandoc state.
The given callback is invoked after setting the pandoc state to the given values. The modifiable options are restored to their original values once the callback has returned.
The following state variables can be controlled:
request_headers (list of key-value tuples)resource_path (list of filepaths)user_data_dir (string)Other options are ignored, and the rest of the state is not modified.
Usage:
local opts = {
request_headers = {
{'Authorization', 'Basic my-secret'}
}
}
pandoc.with_state(opts, function ()
local mime, contents = pandoc.mediabag.fetch(image_url)
)
read (markup[, format[, reader_options[, read_env]]])Parse the given string into a Pandoc document.
The parser is run in the same environment that was used to read
the main input files; it has full access to the file-system and
the mediabag. This means that if the document specifies files to
be included, as is possible in formats like LaTeX,
reStructuredText, and Org, then these will be included in the
resulting document. Any media elements are added to those
retrieved from the other parsed input files. Use the
read_env parameter to modify this behavior.
The format parameter defines the format flavor
that will be parsed. This can be either a string, using
+ and - to enable and disable
extensions, or a table with fields format (string)
and extensions (table). The extensions
table can be a list of all enabled extensions, or a table with
extensions as keys and their activation status as values
(true or 'enable' to enable an
extension, false or 'disable' to disable
it).
Note: The extensions field in reader_options is
ignored, as the function will always use the format extensions
specified via the format parameter.
Parameters:
markupformat"markdown". See the
description above for a complete description of this parameter.
(string|table)
reader_optionsread_envnil, then the global
environment is used. Passing a list of filenames causes the reader
to be run in a sandbox. The given files are read from the file
system and provided to the sandbox via an ersatz file system. The
table can also contain mappings from filenames to contents, which
will be used to populate the ersatz file system.
Returns: pandoc document (Pandoc)
Usage:
local org_markup = "/emphasis/" -- Input to be read
local document = pandoc.read(org_markup, "org")
-- Get the first block of the document
local block = document.blocks[1]
-- The inline element in that block is an `Emph`
assert(block.content[1].t == "Emph")
write (doc[, format[, writer_options]])Converts a document to the given target format.
Note: The extensions field in writer_options is
ignored, as the function will always use the format extensions
specified via the format parameter.
Parameters:
docformat"html". See the
documentation of pandoc.read for a complete
description of this parameter. (string|table)
writer_optionsReturns: - converted document (string)
Usage:
local doc = pandoc.Pandoc(
{pandoc.Para {pandoc.Strong 'Tea'}}
)
local html = pandoc.write(doc, 'html')
assert(html == "<p><strong>Tea</strong></p>")
write_classic (doc[, writer_options])Runs a classic custom Lua writer, using the functions defined in the current environment.
Parameters:
docwriter_optionsReturns: - converted document (string)
Usage:
-- Adding this function converts a classic writer into a
-- new-style custom writer.
function Writer (doc, opts)
PANDOC_DOCUMENT = doc
PANDOC_WRITER_OPTIONS = opts
loadfile(PANDOC_SCRIPT_FILE)()
return pandoc.write_classic(doc, opts)
end
Command line options and argument parsing.
Default CLI options, using a JSON-like representation. (table)
parse_options (args)
Parses command line arguments into pandoc options. Typically
this function will be used in stand-alone pandoc Lua scripts,
taking the list of arguments from the global arg.
Parameters:
argsReturns:
Since: 3.0
repl ([env])
Starts a read-eval-print loop (REPL). The function returns all
values of the last evaluated input. Exit the REPL by pressing
ctrl-d or ctrl-c; press F1
to get a list of all key bindings.
The REPL is started in the global namespace, unless the
env parameter is specified. In that case, the global
namespace is merged into the given table and the result is used as
_ENV value for the repl.
Specifically, local variables cannot be accessed,
unless they are explicitly passed via the env
parameter; e.g.
function Pandoc (doc)
-- start repl, allow to access the `doc` parameter
-- in the repl
return pandoc.cli.repl{ doc = doc }
end
Note: it seems that the function exits immediately on Windows, without prompting for user input.
Parameters:
envReturns:
The result(s) of the last evaluated input, or nothing if the last input resulted in an error.
Since: 3.1.2
This module exposes internal pandoc functions and utility functions.
blocks_to_inlines (blocks[, sep])
Squash a list of blocks into a list of inlines.
Usage
local blocks = {
pandoc.Para{ pandoc.Str 'Paragraph1' },
pandoc.Para{ pandoc.Emph 'Paragraph2' }
}
local inlines = pandoc.utils.blocks_to_inlines(blocks)
assert(
inlines == pandoc.Inlines {
pandoc.Str 'Paragraph1',
pandoc.Linebreak(),
pandoc.Emph{ pandoc.Str 'Paragraph2' }
}
)
Parameters:
blockssep{pandoc.LineBreak()}. (Inlines)
Returns:
Since: 2.2.3
citeproc (doc)
Process the citations in the file, replacing them with rendered citations and adding a bibliography. See the manual section on citation rendering for details.
Usage:
-- Lua filter that behaves like `--citeproc`
function Pandoc (doc)
return pandoc.utils.citeproc(doc)
end
Parameters:
docReturns:
Since: 2.19.1
documentation (object[, format])
Return the documentation for a function or module defined by pandoc. Throws an error if there is no documentation for the given object.
The result format can be any textual format accepted by
pandoc.write, and the documentation will be returned
in that format. Additionally, the special format
blocks is accepted, in which case the documentation
is returned as Blocks.
Parameters:
objectformat'ansi' (string|table)
Returns:
Since: 3.8.4
equals (element1, element2)
Test equality of AST elements. Elements in Lua are considered equal if and only if the objects obtained by unmarshaling are equal.
This function is deprecated. Use the normal
Lua == equality operator instead.
Parameters:
element1element2Returns:
Since: 2.5
from_simple_table (simple_tbl)
Creates a Table block element from a SimpleTable. This is useful for dealing with legacy code which was written for pandoc versions older than 2.10.
Usage:
local simple = pandoc.SimpleTable(table)
-- modify, using pre pandoc 2.10 methods
simple.caption = pandoc.SmallCaps(simple.caption)
-- create normal table block again
table = pandoc.utils.from_simple_table(simple)
Parameters:
simple_tblReturns:
Since: 2.11
make_sections (number_sections, baselevel, blocks)
Converts a list of Block elements
into sections. Divs will be created beginning at each
Header and containing following content until the
next Header of comparable level. If
number_sections is true, a number
attribute will be added to each Header containing the
section number. If base_level is non-null,
Header levels will be reorganized so that there are
no gaps, and so that the base level is the level specified.
Parameters:
number_sectionsnumber
attribute containing the section number. (boolean)
baselevelblocksReturns:
Since: 2.8
normalize_date (date)
Parse a date and convert (if possible) to “YYYY-MM-DD” format. We limit years to the range 1601-9999 (ISO 8601 accepts greater than or equal to 1583, but MS Word only accepts dates starting 1601). Returns nil instead of a string if the conversion failed.
Parameters:
dateReturns:
Since: 2.0.6
references (doc)
Get references defined inline in the metadata and via an
external bibliography. Only references that are actually cited in
the document (either with a genuine citation or with
nocite) are returned. URL variables are converted to
links.
The structure used represent reference values corresponds to
that used in CSL JSON; the return value can be use as
references metadata, which is one of the values used
by pandoc and citeproc when generating bibliographies.
Usage:
-- Include all cited references in document
function Pandoc (doc)
doc.meta.references = pandoc.utils.references(doc)
doc.meta.bibliography = nil
return doc
end
Parameters:
docReturns:
Since: 2.17
run_json_filter (doc, filter[, args])
Filter the given doc by passing it through a JSON filter.
Parameters:
docfilterargs{FORMAT}. ({string,...})
Returns:
Since: 2.1.1
run_lua_filter (doc, filter[, env])
Filter the given doc by passing it through a Lua filter.
The filter will be run in the current Lua process.
Parameters:
docfilterenvReturns:
Since: 3.2.1
sha1 (input)
Computes the SHA1 hash of the given string input.
Parameters:
inputReturns:
Since: 2.0.6
stringify (element)
Converts the given element (Pandoc, Meta, Block, or Inline) into a string with all formatting removed.
Parameters:
Returns:
Since: 2.0.6
to_roman_numeral (n)
Converts an integer < 4000 to uppercase roman numeral.
Usage:
local to_roman_numeral = pandoc.utils.to_roman_numeral
local pandoc_birth_year = to_roman_numeral(2006)
-- pandoc_birth_year == 'MMVI'
Parameters:
nReturns:
Since: 2.0.6
to_simple_table (tbl)
Converts a table into an old/simple table.
Usage:
local simple = pandoc.utils.to_simple_table(table)
-- modify, using pre pandoc 2.10 methods
simple.caption = pandoc.SmallCaps(simple.caption)
-- create normal table block again
table = pandoc.utils.from_simple_table(simple)
Parameters:
tblReturns:
Since: 2.11
type (value)
Pandoc-friendly version of Lua’s default type
function, returning type information similar to what is presented
in the manual.
The function works by checking the metafield
__name. If the argument has a string-valued metafield
__name, then it returns that string. Otherwise it
behaves just like the normal type function.
Usage:
-- Prints one of 'string', 'boolean', 'Inlines', 'Blocks',
-- 'table', and 'nil', corresponding to the Haskell constructors
-- MetaString, MetaBool, MetaInlines, MetaBlocks, MetaMap,
-- and an unset value, respectively.
function Meta (meta)
print('type of metavalue `author`:', pandoc.utils.type(meta.author))
end
Parameters:
valueReturns:
Since: 2.17
Version (v)
Creates a Version object.
Parameters:
vReturns:
The pandoc.mediabag module allows accessing
pandoc’s media storage. The “media bag” is used when pandoc is
called with the --extract-media or (for HTML only)
--embed-resources option.
The module is loaded as part of module pandoc and
can either be accessed via the pandoc.mediabag field,
or explicitly required, e.g.:
local mb = require 'pandoc.mediabag'
delete (filepath)
Removes a single entry from the media bag.
Parameters:
filepathSince: 2.7.3
empty ()
Clear-out the media bag, deleting all items.
Since: 2.7.3
fetch (source)
Fetches the given source from a URL or local file. Returns two values: the contents of the file and the MIME type (or an empty string).
The function will first try to retrieve source
from the mediabag; if that fails, it will try to download it or
read it from the local file system while respecting pandoc’s
“resource path” setting.
Usage:
local diagram_url = 'https://pandoc.org/diagram.jpg'
local mt, contents = pandoc.mediabag.fetch(diagram_url)
Parameters:
sourceReturns:
The entry’s MIME type, or nil if the file was
not found. (string)
Contents of the file, or nil if the file was
not found. (string)
Since: 2.0
fill (doc)
Fills the mediabag with the images in the given document. An image that cannot be retrieved will be replaced with a Span of class “image” that contains the image description.
Images for which the mediabag already contains an item will not be processed again.
Parameters:
docReturns:
Since: 2.19
insert (filepath, mimetype, contents)
Adds a new entry to pandoc’s media bag. Replaces any existing
media bag entry the same filepath.
Usage:
local fp = 'media/hello.txt'
local mt = 'text/plain'
local contents = 'Hello, World!'
pandoc.mediabag.insert(fp, mt, contents)
Parameters:
filepathmimetypenil if the MIME type is
unknown or unavailable. (string|nil)
contentsSince: 2.0
items ()
Returns an iterator triple to be used with Lua’s generic
for statement. The iterator returns the filepath,
MIME type, and content of a media bag item on each invocation.
Items are processed one-by-one to avoid excessive memory use.
This function should be used only when full access to all
items, including their contents, is required. For all other cases,
list should be
preferred.
Usage:
for fp, mt, contents in pandoc.mediabag.items() do
-- print(fp, mt, contents)
end
Returns:
Iterator triple:
Since: 2.7.3
list ()
Get a summary of the current media bag contents.
Usage:
-- calculate the size of the media bag.
local mb_items = pandoc.mediabag.list()
local sum = 0
for i = 1, #mb_items do
sum = sum + mb_items[i].length
end
print(sum)
Returns:
path,
type, and length, giving the filepath,
MIME type, and length of contents in bytes, respectively.
(table)Since: 2.0
lookup (filepath)
Lookup a media item in the media bag, and return its MIME type and contents.
Usage:
local filename = 'media/diagram.png'
local mt, contents = pandoc.mediabag.lookup(filename)
Parameters:
filepathReturns:
The entry’s MIME type, or nil if the file was not found. (string)
Contents of the file, or nil if the file was not found. (string)
Since: 2.0
make_data_uri (mime_type, raw_data)
Convert the input data into a data URI as defined by RFC 2397.
Example:
-- Embed an unofficial pandoc logo
local pandoc_logo_url = 'https://raw.githubusercontent.com/'
.. 'tarleb/pandoc-logo/main/pandoc.svg'
local datauri = pandoc.mediabag.make_data_uri(
pandoc.mediabag.fetch(pandoc_logo_url)
)
local image = pandoc.Image('Logo', datauri)
Parameters:
mime_typeraw_dataReturns:
Since: 3.7.1
write (dir[, fp])
Writes the contents of mediabag to the given target directory.
If fp is given, then only the resource with the given
name will be extracted. Omitting that parameter means that the
whole mediabag gets extracted. An error is thrown if
fp is given but cannot be found in the mediabag.
Parameters:
dirfpSince: 3.0
This module defines pandoc’s list type. It comes with useful methods and convenience functions.
pandoc.List([table])Create a new List. If the optional argument table
is given, set the metatable of that value to
pandoc.List. This is an alias for pandoc.List:new([table]).
pandoc.List:__concat (list)Concatenates two lists.
Parameters:
listReturns: a new list containing all elements from list1 and list2
pandoc.List:__eq (a, b)Compares two lists for equality. The lists are taken as equal if and only if they are of the same type (i.e., have the same non-nil metatable), have the same length, and if all elements are equal.
Parameters:
a, bReturns:
true if the two lists are equal,
false otherwise.pandoc.List:at:at (index[, default])
Returns the element at the given index, or default
if the list contains no item at the given position.
Negative integers count back from the last item in the list.
Parameters:
indexdefaultReturns:
index, or
default.pandoc.List:clone ()Returns a (shallow) copy of the list. (To get a deep copy of
the list, use walk with an empty filter.)
pandoc.List:extend (list)Adds the given list to the end of this list.
Parameters:
listpandoc.List:find (needle, init)Returns the value and index of the first occurrence of the given item.
Parameters:
needleinitReturns: first item equal to the needle, or nil if no such item exists.
pandoc.List:find_if (pred, init)Returns the value and index of the first element for which the predicate holds true.
Parameters:
predinitReturns: first item for which `test` succeeds, or nil if no such item exists.
pandoc.List:filter (pred)Returns a new list containing all items satisfying a given condition.
Parameters:
predReturns: a new list containing all items for which `test` was true.
pandoc.List:includes (needle, init)Checks if the list has an item equal to the given needle.
Parameters:
needleinitReturns: true if a list item is equal to the needle, false otherwise
pandoc.List:insert ([pos], value)Inserts element value at position pos
in list, shifting elements to the next-greater index if
necessary.
This function is identical to table.insert.
Parameters:
posvaluepandoc.List:iter ([step])Create an iterator over the list. The resulting function returns the next value each time it is called.
Usage:
for item in List{1, 1, 2, 3, 5, 8}:iter() do
-- process item
end
Parameters:
stepReturns:
pandoc.List:map (fn)Returns a copy of the current list by applying the given function to all elements.
Parameters:
fnpandoc.List:new([table])Create a new List. If the optional argument table
is given, set the metatable of that value to
pandoc.List.
The function also accepts an iterator, in which case it creates a new list from the return values of the iterator function.
Parameters:
tableReturns: the updated input value
pandoc.List:remove ([pos])Removes the element at position pos, returning the
value of the removed element.
This function is identical to table.remove.
Parameters:
posReturns: the removed element
pandoc.List:sort ([comp])Sorts list elements in a given order, in-place. If
comp is given, then it must be a function that
receives two list elements and returns true when the first element
must come before the second in the final order (so that, after the
sort, i < j implies
not comp(list[j],list[i])). If comp is not given,
then the standard Lua operator < is used
instead.
Note that the comp function must define a strict partial order over the elements in the list; that is, it must be asymmetric and transitive. Otherwise, no valid sort may be possible.
The sort algorithm is not stable: elements considered equal by the given order may have their relative positions changed by the sort.
This function is identical to table.sort.
Parameters:
compInformation about the formats supported by pandoc.
all_extensions (format)
Returns the list of all valid extensions for a format. No distinction is made between input and output; an extension can have an effect when reading a format but not when writing it, or vice versa.
Parameters:
formatReturns:
format (FormatExtensions)Since: 3.0
default_extensions (format)
Returns the list of default extensions of the given format; this function does not check if the format is supported, it will return a fallback list of extensions even for unknown formats.
Parameters:
formatReturns:
format (FormatExtensions)Since: 3.0
extensions (format)
Returns the extension configuration for the given format. The
configuration is represented as a table with all supported
extensions as keys and their default status as value, with
true indicating that the extension is enabled by
default, while false marks a supported extension
that’s disabled.
This function can be used to assign a value to the
Extensions global in custom readers and writers.
Parameters:
formatReturns:
Since: 3.0
from_path (path)
Parameters:
pathReturns:
Since: 3.1.2
Basic image querying functions.
size (image[, opts])
Returns a table containing the size and resolution of an image; throws an error if the given string is not an image, or if the size of the image cannot be determined.
The resulting table has four entries: width, height, dpi_horz, and dpi_vert.
The opts parameter, when given, should be either a
WriterOptions object such as PANDOC_WRITER_OPTIONS,
or a table with a dpi entry. It affects the
calculation for vector image formats such as SVG.
Parameters:
imageoptsReturns:
Since: 3.1.13
format (image)
Returns the format of an image as a lowercase string.
Formats recognized by pandoc include png, gif, tiff, jpeg, pdf, svg, eps, and emf.
Parameters:
imageReturns:
Since: 3.1.13
JSON module to work with JSON; based on the Aeson Haskell package.
Value used to represent the null JSON value.
(light userdata)
decode (str[, pandoc_types])
Creates a Lua object from a JSON string. If the input can be
decoded as representing an Inline, Block, Pandoc,
Inlines, or Blocks element the function will return an
object of the appropriate type. Otherwise, if the input does not
represent any of the AST types, the default decoding is applied:
Objects and arrays are represented as tables, the JSON
null value becomes null, and JSON booleans, strings, and
numbers are converted using the Lua types of the same name.
The special handling of AST elements can be disabled by setting
pandoc_types to false.
Parameters:
strpandoc_typesReturns:
Since: 3.1.1
encode (object)
Encodes a Lua object as JSON string.
If the object has a metamethod with name __tojson,
then the result is that of a call to that method with
object passed as the sole argument. The result of
that call is expected to be a valid JSON string, but this is not
checked.
Parameters:
objectReturns:
object (string)Since: 3.1.1
Access to pandoc’s logging system.
info (message)
Reports a ScriptingInfo message to pandoc’s logging system.
Parameters:
messageSince: 3.2
silence (fn)
Applies the function to the given arguments while preventing log messages from being added to the log. The warnings and info messages reported during the function call are returned as the first return value, with the results of the function call following thereafter.
Parameters:
fnReturns:
List of log messages triggered during the function call, and any value returned by the function.
Since: 3.2
warn (message)
Reports a ScriptingWarning to pandoc’s logging system. The warning will be printed to stderr unless logging verbosity has been set to ERROR.
Parameters:
messageSince: 3.2
Module for file path manipulations.
The character that separates directories. (string)
The character that is used to separate the entries in the
PATH environment variable. (string)
directory (filepath)
Gets the directory name, i.e., removes the last directory separator and everything after from the given path.
Parameters:
filepathReturns:
Since: 2.12
exists (path[, type])
Check whether there exists a filesystem object at the given
path. If type is given and either directory
or file, then the function returns true if
and only if the file system object has the given type, or if it’s
a symlink pointing to an object of that type. Passing
symlink as type requires the path itself to be a symlink.
Types other than those will cause an error.
Parameters:
pathtypeReturns:
type exists
at path. (boolean)Since: 3.7.1
filename (filepath)
Get the file name.
Parameters:
filepathReturns:
Since: 2.12
is_absolute (filepath)
Checks whether a path is absolute, i.e. not fixed to a root.
Parameters:
filepathReturns:
true iff filepath is an absolute
path, false otherwise. (boolean)Since: 2.12
is_relative (filepath)
Checks whether a path is relative or fixed to a root.
Parameters:
filepathReturns:
true iff filepath is a relative
path, false otherwise. (boolean)Since: 2.12
join (filepaths)
Join path elements back together by the directory separator.
Parameters:
filepathsReturns:
Since: 2.12
make_relative (path, root[, unsafe])
Contract a filename, based on a relative path. Note that the
resulting path will never introduce .. paths, as the
presence of symlinks means ../b may not reach
a/b if it starts from a/c. For a worked
example see this
blog post.
Parameters:
pathrootunsafe.. in the result. (boolean)
Returns:
Since: 2.12
normalize (filepath)
Normalizes a path.
// makes sense only as part of a (Windows)
network drive; elsewhere, multiple slashes are reduced to a single
path.separator (platform dependent)./ becomes path.separator (platform
dependent)../ is removed..Parameters:
filepathReturns:
Since: 2.12
split (filepath)
Splits a path by the directory separator.
Parameters:
filepathReturns:
Since: 2.12
split_extension (filepath)
Splits the last extension from a file path and returns the parts. The extension, if present, includes the leading separator; if the path has no extension, then the empty string is returned as the extension.
Parameters:
filepathReturns:
filepath without extension (string)
extension or empty string (string)
Since: 2.12
split_search_path (search_path)
Takes a string and splits it on the
search_path_separator character. Blank items are
ignored on Windows, and converted to . on Posix. On
Windows path elements are stripped of quotes.
Parameters:
search_pathReturns:
Since: 2.12
treat_strings_as_paths ()
Augment the string module such that strings can be used as path objects.
Since: 2.12
Access to the higher-level document structure, including hierarchical sections and the table of contents.
make_sections (blocks[, opts])
Puts Blocks into a hierarchical structure: a list of sections (each a Div with class “section” and first element a Header).
The optional opts argument can be a table; two
settings are recognized: If number_sections is true,
a number attribute containing the section number will
be added to each Header. If base_level
is an integer, then Header levels will be reorganized
so that there are no gaps, with numbering levels shifted by the
given value. Finally, an integer slide_level value
triggers the creation of slides at that heading level.
Note that a WriterOptions
object can be passed as the opts table; this will set the
number_section and slide_level values to
those defined on the command line.
Usage:
local blocks = {
pandoc.Header(2, pandoc.Str 'first'),
pandoc.Header(2, pandoc.Str 'second'),
}
local opts = PANDOC_WRITER_OPTIONS
local newblocks = pandoc.structure.make_sections(blocks, opts)
Parameters:
Returns:
Since: 3.0
slide_level (blocks)
Find level of header that starts slides (defined as the least header level that occurs before a non-header/non-hrule in the blocks).
Parameters:
Returns:
Since: 3.0
split_into_chunks (doc[, opts])
Converts a Pandoc document into a ChunkedDoc.
Parameters:
docoptsSplitting options.
The following options are supported:
`path_template`
: template used to generate the chunks' filepaths
`%n` will be replaced with the chunk number (padded with
leading 0s to 3 digits), `%s` with the section number of
the heading, `%h` with the (stringified) heading text,
`%i` with the section identifier. For example,
`"section-%s-%i.html"` might be resolved to
`"section-1.2-introduction.html"`.
Default is `"chunk-%n"` (string)
`number_sections`
: whether sections should be numbered; default is `false`
(boolean)
`chunk_level`
: The heading level the document should be split into
chunks. The default is to split at the top-level, i.e.,
`1`. (integer)
`base_heading_level`
: The base level to be used for numbering. Default is `nil`
(integer|nil)
(table)
Returns:
Since: 3.0
table_of_contents (toc_source[, opts])
Generates a table of contents for the given object.
Parameters:
toc_sourceoptsReturns:
Since: 3.0
unique_identifier (inlines[, used[, exts]])
Generates a unique identifier from a list of inlines, similar
to what’s generated by the auto_identifiers
extension.
The method used to generated identifiers can be modified
through ext, which is a list of format
extensions.
It can be used to generate IDs similar to what the
auto_identifiers extension provides.
Example:
local used_ids = {}
function Header (h)
local id =
pandoc.structure.unique_identifier(h.content, used_ids)
used_ids[id] = true
h.identifier = id
return h
end
Parameters:
inlinesusedextsReturns:
Since: 3.8
Access to the system’s information and file functionality.
The machine architecture on which the program is running. (string)
The operating system on which the program is running. The most
common values are darwin (macOS),
freebsd, linux,
linux-android, mingw32 (Windows),
netbsd, openbsd. (string)
cputime ()
Returns the number of picoseconds CPU time used by the current program. The precision of this result may vary in different versions and on different platforms.
Returns:
Since: 3.1.1
command (command, args[, input[, opts]])
Executes a system command with the given arguments and
input on stdin.
Parameters:
commandargsinputoptsReturns:
exit code – false on success, an integer
otherwise (integer|boolean)
stdout (string)
stderr (string)
Since: 3.7.1
copy (source, target)
Copy a file with its permissions. If the destination file already exists, it is overwritten.
Parameters:
sourcetargetSince: 3.7.1
environment ()
Retrieves the entire environment as a string-indexed table.
Returns:
Since: 2.7.3
get_working_directory ()
Obtain the current working directory as an absolute path.
Returns:
Since: 2.8
list_directory ([directory])
List the contents of a directory.
Parameters:
directory.. (string)
Returns:
directory, except for
the special entries (. and ..).
(table)Since: 2.19
make_directory (dirname[, create_parent])
Create a new directory which is initially empty, or as near to empty as the operating system allows. The function throws an error if the directory cannot be created, e.g., if the parent directory does not exist or if a directory of the same name is already present.
If the optional second parameter is provided and truthy, then all directories, including parent directories, are created as necessary.
Parameters:
dirnamecreate_parentSince: 2.19
read_file (filepath)
Parameters:
filepathReturns:
Since: 3.7.1
rename (old, new)
Change the name of an existing path from old to
new.
If old is a directory and new is a
directory that already exists, then new is atomically
replaced by the old directory. On Win32 platforms,
this function fails if new is an existing
directory.
If old does not refer to a directory, then neither
may new.
Renaming may not work across file system boundaries or due to other system-specific reasons. It’s generally more robust to copy the source path to its destination before deleting the source.
Parameters:
oldnewSince: 3.7.1
remove (filename)
Removes the directory entry for an existing file.
Parameters:
filenameSince: 3.7.1
remove_directory (dirname[, recursive])
Remove an existing, empty directory. If recursive
is given, then delete the directory and its contents
recursively.
Parameters:
dirnamerecursiveSince: 2.19
times (filepath)
Obtain the modification and access time of a file or directory. The times are returned as strings using the ISO 8601 format.
Parameters:
filepathReturns:
time at which the file or directory was last modified (table)
time at which the file or directory was last accessed (table)
Since: 3.7.1
with_environment (environment, callback)
Run an action within a custom environment. Only the environment
variables given by environment will be set, when
callback is called. The original environment is
restored after this function finishes, even if an error occurs
while running the callback action.
Parameters:
environmentcallback (table)
callbackReturns:
The results of the call to callback.
Since: 2.7.3
with_temporary_directory (parent_dir, templ, callback)
Create and use a temporary directory inside the given directory. The directory is deleted after the callback returns.
Parameters:
parent_dirtemplcallbackReturns:
The results of the call to callback.
Since: 2.8
with_working_directory (directory, callback)
Run an action within a different directory. This function will
change the working directory to directory, execute
callback, then switch back to the original working
directory, even if an error occurs while running the callback
action.
Parameters:
directorycallback should be
executed (string)
callbackReturns:
The results of the call to callback.
Since: 2.7.3
write_file (filepath, contents)
Writes a string to a file.
Parameters:
filepathcontentsSince: 3.7.1
xdg (xdg_directory_type[, filepath])
Access special directories and directory search paths.
Special directories for storing user-specific application data, configuration, and cache files, as specified by the XDG Base Directory Specification.
Parameters:
xdg_directory_typeThe type of the XDG directory or search path. Must be one of
config, data, cache,
state, datadirs, or
configdirs.
Matching is case-insensitive, and underscores and
XDG prefixes are ignored, so a value like
XDG_DATA_DIRS is also acceptable.
The state directory might not be available,
depending on the version of the underlying Haskell library.
(string)
filepathReturns:
Since: 3.7.1
Plain-text document layouting.
Inserts a blank line unless one exists already. (Doc)
A carriage return. Does nothing if we’re at the beginning of a line; otherwise inserts a newline. (Doc)
The empty document. (Doc)
A breaking (reflowable) space. (Doc)
after_break (text)
Creates a Doc which is conditionally included only if it comes at the beginning of a line.
An example where this is useful is for escaping line-initial
. in roff man.
Parameters:
textReturns:
Since: 2.18
before_non_blank (doc)
Conditionally includes the given doc unless it is
followed by a blank space.
Parameters:
docReturns:
Since: 2.18
blanklines (n)
Inserts blank lines unless they exist already.
Parameters:
nReturns:
Since: 2.18
braces (doc)
Puts the doc in curly braces.
Parameters:
docReturns:
doc enclosed by {}. (Doc)Since: 2.18
brackets (doc)
Puts the doc in square brackets
Parameters:
docReturns:
Since: 2.18
cblock (doc, width)
Creates a block with the given width and content, aligned centered.
Parameters:
docwidthReturns:
width
chars per line. (Doc)Since: 2.18
chomp (doc)
Chomps trailing blank space off of the doc.
Parameters:
docReturns:
doc without trailing blanks (Doc)Since: 2.18
concat (docs[, sep])
Concatenates a list of Docs.
Parameters:
docssepReturns:
Since: 2.18
double_quotes (doc)
Wraps a Doc in double quotes.
Parameters:
docReturns:
doc enclosed by " chars (Doc)Since: 2.18
flush (doc)
Makes a Doc flush against the left margin.
Parameters:
docReturns:
doc (Doc)Since: 2.18
hang (doc, ind, start)
Creates a hanging indent.
Parameters:
Returns:
doc prefixed by start on the first
line, subsequent lines indented by ind spaces. (Doc)Since: 2.18
inside (contents, start, end)
Encloses a Doc inside a start and end Doc.
Parameters:
Returns:
Since: 2.18
lblock (doc, width)
Creates a block with the given width and content, aligned to the left.
Parameters:
docwidthReturns:
width chars per line.
(Doc)Since: 2.18
literal (text)
Creates a Doc from a string.
Parameters:
textReturns:
Since: 2.18
nest (doc, ind)
Indents a Doc by the specified number of
spaces.
Parameters:
docindReturns:
doc indented by ind spaces (Doc)Since: 2.18
nestle (doc)
Removes leading blank lines from a Doc.
Parameters:
docReturns:
doc with leading blanks removed (Doc)Since: 2.18
nowrap (doc)
Makes a Doc non-reflowable.
Parameters:
docReturns:
Since: 2.18
parens (doc)
Puts the doc in parentheses.
Parameters:
docReturns:
Since: 2.18
prefixed (doc, prefix)
Uses the specified string as a prefix for every line of the inside document (except the first, if not at the beginning of the line).
Parameters:
docprefixReturns:
doc (Doc)Since: 2.18
quotes (doc)
Wraps a Doc in single quotes.
Parameters:
docReturns:
'. (Doc)Since: 2.18
rblock (doc, width)
Creates a block with the given width and content, aligned to the right.
Parameters:
docwidthReturns:
width
chars per line. (Doc)Since: 2.18
vfill (border)
An expandable border that, when placed next to a box, expands to the height of the box. Strings cycle through the list provided.
Parameters:
borderReturns:
Since: 2.18
render (doc[, colwidth[, style]])
Render a Doc. The text is reflowed on breakable spaces to match the given line length. Text is not reflowed if the line length parameter is omitted or nil.
Parameters:
doccolwidthnil, the default, means that the text is not reflown.
(integer)
style'plain' or 'ansi'. Defaults to
'plain'. (string)
Returns:
Since: 2.18
is_empty (doc)
Checks whether a doc is empty.
Parameters:
docReturns:
true iff doc is the empty document,
false otherwise. (boolean)Since: 2.18
height (doc)
Returns the height of a block or other Doc.
Parameters:
docReturns:
Since: 2.18
min_offset (doc)
Returns the minimal width of a Doc when reflowed at breakable spaces.
Parameters:
docReturns:
Since: 2.18
offset (doc)
Returns the width of a Doc as number of characters.
Parameters:
docReturns:
Since: 2.18
real_length (str)
Returns the real length of a string in a monospace font: 0 for a combining character, 1 for a regular character, 2 for an East Asian wide character.
Parameters:
strReturns:
Since: 2.18
update_column (doc, i)
Returns the column that would be occupied by the last laid out character.
Parameters:
dociReturns:
Since: 2.18
bold (doc)
Puts a Doc in boldface.
Parameters:
docReturns:
Since: 3.4.1
italic (doc)
Puts a Doc in italics.
Parameters:
docReturns:
Since: 3.4.1
underlined (doc)
Underlines a Doc.
Parameters:
docReturns:
Since: 3.4.1
strikeout (doc)
Puts a line through the Doc.
Parameters:
docReturns:
Since: 3.4.1
fg (doc, color)
Set the foreground color.
Parameters:
doccolorReturns:
Since: 3.4.1
bg (doc, color)
Set the background color.
Parameters:
doccolorReturns:
Since: 3.4.1
See the description above.
Scaffolding for custom writers.
An object to be used as a Writer function; the
construct handles most of the boilerplate, expecting only render
functions for all AST elements (table)
UTF-8 aware text manipulation functions, implemented in Haskell.
The text module can also be loaded under the name
text, although this is discouraged and
deprecated.
-- uppercase all regular text in a document:
function Str (s)
s.text = pandoc.text.upper(s.text)
return s
endfromencoding (s[, encoding])
Converts a string to UTF-8. The encoding parameter
specifies the encoding of the input string. On Windows, that
parameter defaults to the current ANSI code page; on other
platforms the function will try to use the file system’s
encoding.
The set of known encodings is system dependent, but includes at
least UTF-8, UTF-16BE,
UTF-16LE, UTF-32BE, and
UTF-32LE. Note that the default code page on Windows
is available through CP0.
Parameters:
sencodingReturns:
Since: 3.0
len (s)
Returns the length of a UTF-8 string, i.e., the number of characters.
Parameters:
sReturns:
Since: 2.0.3
lower (s)
Returns a copy of a UTF-8 string, converted to lowercase.
Parameters:
sReturns:
s (string)Since: 2.0.3
reverse (s)
Returns a copy of a UTF-8 string, with characters reversed.
Parameters:
sReturns:
s (string)Since: 2.0.3
sub (s, i[, j])
Returns a substring of a UTF-8 string, using Lua’s string indexing rules.
Parameters:
sijReturns:
Since: 2.0.3
subscript (input)
Tries to convert the string into a Unicode subscript version of
the string. Returns nil if not all characters of the
input can be mapped to a subscript Unicode character. Supported
characters include numbers, parentheses, and plus/minus.
Parameters:
inputReturns:
nil if not all
characters could be converted. (string|nil)Since: 3.8
superscript (input)
Tries to convert the string into a Unicode superscript version
of the string. Returns nil if not all characters of
the input can be mapped to a superscript Unicode character.
Supported characters include numbers, parentheses, and
plus/minus.
Parameters:
inputReturns:
nil if not
all characters could be converted. (string|nil)Since: 3.8
toencoding (s[, enc])
Converts a UTF-8 string to a different encoding. The
encoding parameter defaults to the current ANSI code
page on Windows; on other platforms it will try to guess the file
system’s encoding.
The set of known encodings is system dependent, but includes at
least UTF-8, UTF-16BE,
UTF-16LE, UTF-32BE, and
UTF-32LE. Note that the default code page on Windows
is available through CP0.
Parameters:
sencReturns:
Since: 3.0
upper (s)
Returns a copy of a UTF-8 string, converted to uppercase.
Parameters:
sReturns:
s (string)Since: 2.0.3
Handle pandoc templates.
apply (template, context)
Applies a context with variable assignments to a template,
returning the rendered template. The context
parameter must be a table with variable names as keys and Doc, string, boolean, or table as values,
where the table can be either be a list of the aforementioned
types, or a nested context.
Parameters:
templatecontextReturns:
Since: 3.0
compile (template[, templates_path])
Compiles a template string into a Template object usable by pandoc.
If the templates_path parameter is specified, then
it should be the file path associated with the template. It is
used when checking for partials. Partials will be taken only from
the default data files if this parameter is omitted.
An error is raised if compilation fails.
Parameters:
templatetemplates_pathReturns:
Since: 2.17
default ([writer])
Returns the default template for a given writer as a string. An error is thrown if no such template can be found.
Parameters:
writerFORMAT. (string)
Returns:
Since: 2.17
get (filename)
Retrieve text for a template.
This function first checks the resource paths for a file of
this name; if none is found, the templates directory
in the user data directory is checked. Returns the content of the
file, or throws an error if no file is found.
Parameters:
filenameReturns:
Since: 3.2.1
meta_to_context (meta, blocks_writer, inlines_writer)
Creates template context from the document’s Meta data, using the given functions to convert Blocks and Inlines to Doc values.
Parameters:
metablocks_writerinlines_writerReturns:
Since: 3.0
Constructors for types that are not part of the pandoc AST.
Version (version_specifier)
Parameters:
version_specifier'2.7.3', a Lua number like
2.0, a list of integers like {2,7,3}, or
a Version object. (string|number|{integer,...}|Version)
Returns:
Since: 2.7.3
Sources (srcs)
Creates a new Sources element, i.e., a list of Source items.
Pandoc’s text readers expect the input text to be paired with
information on where the text originated, e.g., a file name. This
abstraction is provided via the Sources type.
Pandoc accepts a range of objects wherever a Sources list is expected:
name (the filepath) and text (the file
contents)A Sources list can be converted to a string via the default
tostring Lua function. This will concatenate all
source items.
Parameters:
srcsReturns:
Since: 3.9.1
Version.must_be_at_least (self, reference[, msg])
Parameters:
selfreferencemsgReturns:
Returns no result, and throws an error if this version is older
than reference.
Functions to create, modify, and extract files from zip archives.
The module can be called as a function, in which case it
behaves like the zip function described below.
Zip options are optional; when defined, they must be a table with any of the following keys:
recursive: recurse directories when set to
true;verbose: print info messages to stdout;destination: the value specifies the directory in
which to extract;location: value is used as path name, defining
where files are placed.preserve_symlinks: Boolean value, controlling
whether symbolic links are preserved as such. This option is
ignored on Windows.Archive ([bytestring_or_entries])
Reads an Archive structure from a raw zip archive or a list of Entry items; throws an error if the given string cannot be decoded into an archive.
Parameters:
bytestring_or_entriesReturns:
Since: 3.0
Entry (path, contents[, modtime])
Generates a ZipEntry from a filepath, uncompressed content, and the file’s modification time.
Parameters:
pathcontentsmodtimeReturns:
Since: 3.0
read_entry (filepath[, opts])
Generates a ZipEntry from a file or directory.
Parameters:
filepathoptsReturns:
Since: 3.0
zip (filepaths[, opts])
Package and compress the given files into a new Archive.
Parameters:
filepathsoptsReturns:
Since: 3.0
Files in this zip archive ({zip.Entry,...})
bytestring (self)
Returns the raw binary string representation of the archive.
Parameters:
selfReturns:
extract (self[, opts])
Extract all files from this archive, creating directories as needed. Note that the last-modified time is set correctly only in POSIX, not in Windows. This function fails if encrypted entries are present.
Parameters:
selfoptsModification time (seconds since unix epoch) (integer)
Relative path, using / as separator (zip.Entry)
contents (self[, password])
Get the uncompressed contents of a zip entry. If
password is given, then that password is used to
decrypt the contents. An error is throws if decrypting fails.
Parameters:
selfpasswordReturns:
symlink (self)
Returns the target if the Entry represents a symbolic link, and
nil otherwise. Always returns nil on
Windows.
Parameters:
selfReturns: