Pandoc Lua Filter Manual
Pandoc Lua Filter Manual
Search
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)
end
This 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.
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 list of filters. The filters in that list are called sequentially, each on the
result of the previous 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.)
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 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.
There are two special function names, which can be used to define filters on lists of blocks or lists of inlines.
Inlines (inlines)
If present in a filter, this function will be called on all lists of inline elements, like the content of a Para
(paragraph) block, or the description of an Image. The inlines argument passed to the function will be a List
of Inline elements for each call.
Blocks (blocks)
If present in a filter, this function will be called on all lists of block elements, like the content of a MetaBlocks
meta element block, on each item of a list, and the main content of the Pandoc document. The 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.
Traversal order
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 {filter}
Support for this was added in pandoc 2.17; previous versions ignore the traverse setting.
Typewise traversal
Element filter functions within a filter set are called in a fixed order, skipping any which are not present:
1. functions for Inline elements,
2. the Inlines filter function,
3. functions for Block elements ,
4. the Blocks filter function,
5. the Meta filter function, and last
6. the Pandoc filter function.
It is still possible to force a different order by explicitly returning multiple filter sets. For example, if the filter for
Meta is to be run before that for Str, one can write
-- ... filter definitions ...
return {
{ Meta = Meta }, -- (1)
{ Str = Str } -- (2)
}
Filter sets are applied in the order in which they are returned. All functions in set (1) are thus run before those in
(2), causing the filter function for Meta to be run before the filtering of Str elements is started.
Topdown traversal
It 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
end
Global variables
Pandoc passes additional data to Lua filters by setting global variables.
FORMAT
The global FORMAT 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_OPTIONS
Table of the options which were provided to the parser. (ReaderOptions)
PANDOC_WRITER_OPTIONS
Table of the options that will be passed to the writer. While the object can be modified, the changes will not
be picked up by pandoc. (WriterOptions)
Accessing this variable in custom writers is deprecated. Starting with pandoc 3.0, it is set to a
placeholder value (the default options) in custom writers. Access to the actual writer options is provided via
the Writer or ByteStringWriter function, to which the options are passed as the second function argument.
PANDOC_VERSION
Contains the pandoc version as a Version object which behaves like a numerically indexed table, most
significant number first. E.g., for pandoc 2.7.3, the value of the variable is equivalent to a table {2, 7, 3}.
Use tostring(PANDOC_VERSION) to produce a version string. This variable is also set in custom writers.
PANDOC_API_VERSION
Contains the version of the pandoc-types API against which pandoc was compiled. It is given as a numerically
indexed table, most significant number first. E.g., if pandoc was compiled against pandoc-types 1.17.3, then
the value of the variable will behave like the table {1, 17, 3}. Use tostring(PANDOC_API_VERSION) to
produce a version string. This variable is also set in custom writers.
PANDOC_SCRIPT_FILE
The name used to involve the filter. This value can be used to find files relative to the script file. This variable
is also set in custom writers.
PANDOC_STATE
The state shared by all readers and writers. It is used by pandoc to collect and pass information. The value of
this variable is of type CommonState and is read-only.
pandoc
The pandoc module, described in the next section, is available through the global pandoc. The other modules
described herein are loaded as subfields under their respective name.
lpeg
This variable holds the lpeg module, a package based on Parsing Expression Grammars (PEG). It provides
This variable holds the lpeg 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.
Note that the result of require 'lpeg' is not necessarily equal to this value; the require mechanism prefers
the system’s lpeg library over the built-in version.
re
Contains the LPeg.re module, which is built on top of LPeg and offers an implementation of a regex engine.
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.
Note that the result of require 're is not necessarily equal to this value; the require mechanism prefers the
system’s lpeg library over the built-in version.
Pandoc Module
The 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 creation
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.
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;
the pandoc.mediabag module allows access to the “mediabag,” which stores binary content such as images
that may be included in the final document;
the pandoc.utils module contains various utility functions.
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
end
This makes it possible to apply these functions on strings using colon syntax (mystring:uc_upper()).
Debugging Lua filters
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 Intepreter 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.
Common pitfalls
AST elements not updated
A filtered element will only be updated if the filter function returns a new element to replace it. A function like
the below has no effect, as the function returns no value:
function Str (str)
str.text = string.upper(str.text)
end
The character classes in Lua’s pattern library depend on the current locale: E.g., the character © 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.
Lua’s 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.
Examples
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.
Macro substitution
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,
}
}
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 Phrenology</span></p>
</dd>
</dl>
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 {}
end
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)
end
Counting words in a document
This 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.
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)
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
end
local tikz_doc_template = [[
\documentclass{standalone}
\usepackage{xcolor}
\usepackage{tikz}
\begin{document}
\nopagecolor
%s
\end{document}
]]
extension_for = {
html = 'svg',
html4 = 'svg',
html5 = 'svg',
latex = 'pdf',
beamer = 'pdf' }
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
end
Example 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
Shared Properties
clone
clone ()
All instances of the types listed here, with the exception of read-only objects, can be cloned via the clone()
method.
Usage:
local emph = pandoc.Emph {pandoc.Str 'important'}
local cloned_emph = emph:clone() -- note the colon
Pandoc
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.
blocks
document content (Blocks)
meta
document meta information (Meta object)
walk
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:
self
the element (Pandoc)
lua_filter
map of filter functions (table)
Result:
filtered document (Pandoc)
Usage:
-- returns `pandoc.Pandoc{pandoc.Para{pandoc.Str 'Bye'}}`
return pandoc.Pandoc{pandoc.Para('Hi')}:walk {
Str = function (_) return 'Bye' end,
}
Meta
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.
MetaValue
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:
boolean → MetaBool
string or number → MetaString
Inlines → MetaInlines
Blocks → MetaBlocks
List/integer indexed table → MetaList
string-indexed table → MetaMap
Block
Block values are equal in Lua if and only if they are equal in Haskell.
Common methods
walk
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:
self
the element (Block)
lua_filter
map of filter functions (table)
Result:
Usage:
-- returns `pandoc.Para{pandoc.Str 'Bye'}`
return pandoc.Para('Hi'):walk {
Str = function (_) return 'Bye' end,
}
BlockQuote
A block quote element.
Fields:
content
block content (Blocks)
tag, t
the literal BlockQuote (string)
BulletList
A bullet list.
content
list items (List of items, i.e., List of Blocks)
tag, t
the literal BulletList (string)
CodeBlock
Block of code.
Fields:
text
code string (string)
attr
element attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal CodeBlock (string)
DefinitionList
Definition list, containing terms and their explanation.
Values of this type can be created with the pandoc.DefinitionList constructor.
Fields:
content
list of items
tag, t
the literal DefinitionList (string)
Div
Generic block container with attributes.
content
block content (Blocks)
attr
element attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Div (string)
Figure
Figure with caption and arbitrary block contents.
content
block content (Blocks)
caption
figure caption (Caption)
attr
element attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Figure (string)
Header
Creates a header element.
Values of this type can be created with the pandoc.Header constructor.
Fields:
level
header level (integer)
content
inline content (Inlines)
attr
element attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Header (string)
HorizontalRule
A horizontal rule.
Fields:
tag, t
the literal HorizontalRule (string)
LineBlock
A line block, i.e. a list of lines, each separated from the next by a newline.
Fields:
content
inline content (List of lines, i.e. List of Inlines)
tag, t
the literal LineBlock (string)
OrderedList
An ordered list.
Values of this type can be created with the pandoc.OrderedList constructor.
Fields:
content
list items (List of items, i.e., List of Blocks)
listAttributes
list parameters (ListAttributes)
start
alias for listAttributes.start (integer)
style
alias for listAttributes.style (string)
delimiter
alias for listAttributes.delimiter (string)
tag, t
the literal OrderedList (string)
Para
A paragraph.
content
inline content (Inlines)
tag, t
the literal Para (string)
Plain
Plain text, not a paragraph.
Fields:
content
inline content (Inlines)
tag, t
the literal Plain (string)
RawBlock
Raw content of a specified format.
format
format of content (string)
text
raw content (string)
tag, t
the literal RawBlock (string)
Table
A table.
attr
table attributes (Attr)
caption
table caption (Caption)
colspecs
column specifications, i.e., alignments and widths (List of ColSpecs)
head
table head (TableHead)
bodies
table bodies (List of TableBodys)
foot
table foot (TableFoot)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Table (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).
Blocks
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:
Methods
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
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:
self
the list (Blocks)
lua_filter
map of filter functions (table)
Result:
Usage:
-- returns `pandoc.Blocks{pandoc.Para('Salve!')}`
return pandoc.Blocks{pandoc.Plain('Salve!)}:walk {
Plain = function (p) return pandoc.Para(p.content) end,
}
Inline
Inline values are equal in Lua if and only if they are equal in Haskell.
Common methods
walk
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:
self
the element (Inline)
lua_filter
map of filter functions (table)
Result:
filtered inline element (Inline)
Usage:
-- returns `pandoc.SmallCaps('SPQR)`
return pandoc.SmallCaps('spqr'):walk {
Str = function (s) return string.upper(s.text) end,
}
Cite
Citation.
Values of this type can be created with the pandoc.Cite constructor.
Fields:
content
(Inlines)
citations
citation entries (List of Citations)
tag, t
the literal Cite (string)
Code
Inline code
Values of this type can be created with the pandoc.Code constructor.
Fields:
text
code string (string)
attr
attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Code (string)
Emph
Emphasized text
content
inline content (Inlines)
tag, t
the literal Emph (string)
Image
Image: alt text (list of inlines), target
Fields:
caption
text used to describe the image (Inlines)
src
path to the image file (string)
title
brief image description (string)
attr
attributes (Attr)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Image (string)
LineBreak
Hard line break
Values of this type can be created with the pandoc.LineBreak constructor.
Fields:
tag, t
the literal LineBreak (string)
Link
Hyperlink: alt text (list of inlines), target
Values of this type can be created with the pandoc.Link constructor.
Fields:
attr
attributes (Attr)
content
text for this link (Inlines)
target
the link target (string)
title
brief link description
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Link (string)
Math
TeX math (literal)
Note
Footnote or endnote
Quoted
Quoted text
Values of this type can be created with the pandoc.Quoted constructor.
Fields:
quotetype
type of quotes to be used; one of SingleQuote or DoubleQuote (string)
content
quoted text (Inlines)
tag, t
the literal Quoted (string)
RawInline
Raw inline
SmallCaps
Small caps text
Values of this type can be created with the pandoc.SmallCaps constructor.
Fields:
content
(Inlines)
tag, t
the literal SmallCaps (string)
SoftBreak
Soft line break
Values of this type can be created with the pandoc.SoftBreak constructor.
Fields:
tag, t
the literal SoftBreak (string)
Space
Inter-word space
Values of this type can be created with the pandoc.Space constructor.
Fields:
tag, t
the literal Space (string)
Span
Generic inline container with attributes
Values of this type can be created with the pandoc.Span constructor.
Fields:
attr
attributes (Attr)
content
wrapped content (Inlines)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
tag, t
the literal Span (string)
Str
Text
Values of this type can be created with the pandoc.Str constructor.
Fields:
text
content (string)
tag, t
the literal Str (string)
Strikeout
Strikeout text
Values of this type can be created with the pandoc.Strikeout constructor.
Fields:
content
inline content (Inlines)
tag, t
the literal Strikeout (string)
Strong
Strongly emphasized text
Subscript
Subscripted text
Values of this type can be created with the pandoc.Subscript constructor.
Fields:
content
inline content (Inlines)
tag, t
the literal Subscript (string)
Superscript
Superscripted text
Values of this type can be created with the pandoc.Superscript constructor.
Fields:
content
inline content (Inlines)
tag, t
the literal Superscript (string)
Underline
Underlined text
Values of this type can be created with the pandoc.Underline constructor.
Fields:
content
inline content (Inlines)
tag, t
the literal Underline (string)
Inlines
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 Inline (or Inline-like) values are used directly;
single Inline values are converted into a list containing just that element;
String values are split into words, converting line breaks into SoftBreak elements, and other whitespace
characters into Spaces.
Methods
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
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
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:
self
the list (Inlines)
lua_filter
map of filter functions (table)
Result:
filtered list (Inlines)
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,
}
Element components
Attr
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'})
Attr values are equal in Lua if and only if they are equal in Haskell.
Fields:
identifier
element identifier (string)
classes
element classes (List of strings)
attributes
collection of key/value pairs (Attributes)
Attributes
List 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.
Caption
The caption of a table, with an optional short caption.
Fields:
long
long caption (Blocks)
short
short caption (Inlines)
Cell
A table cell.
Fields:
attr
cell attributes
alignment
individual cell alignment (Alignment).
contents
cell contents (Blocks).
col_span
number of columns spanned by the cell; the width of the cell in columns (integer).
row_span
number of rows spanned by the cell; the height of the cell in rows (integer).
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
Citation
Single citation entry
id
citation identifier, e.g., a bibtex key (string)
mode
citation mode, one of AuthorInText, SuppressAuthor, or NormalCitation (string)
prefix
citation prefix (Inlines)
suffix
citation suffix (Inlines)
note_num
note number (integer)
hash
hash (integer)
ColSpec
Column alignment and width specification for a single table column.
This is a pair, i.e., a plain table, with the following components:
1. cell alignment (Alignment).
2. table column width, as a fraction of the page width (number).
ListAttributes
List attributes
Row
A table row.
Fields:
attr
element attributes (Attr)
cells
list of table cells (List of Cells)
TableBody
A body of a table, with an intermediate head and the specified number of row header columns.
Fields:
attr
table body attributes (Attr)
body
table body rows (List of Rows)
head
intermediate head (List of Rows)
row_head_columns
number of columns taken up by the row head of each row of a TableBody. The row body takes up the
remaining columns.
TableFoot
The foot of a table.
Fields:
attr
element attributes (Attr)
rows
list of rows (List of Rows)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
TableHead
The head of a table.
Fields:
attr
element attributes (Attr)
rows
list of rows (List of Rows)
identifier
alias for attr.identifier (string)
classes
alias for attr.classes (List of strings)
attributes
alias for attr.attributes (Attributes)
ReaderOptions
Pandoc reader options
Fields:
abbreviations
set of known abbreviations (set of strings)
columns
number of columns in terminal (integer)
default_image_extension
default extension for images (string)
extensions
string representation of the syntax extensions bit field (sequence of strings)
indented_code_classes
default classes for indented code blocks (list of strings)
standalone
whether the input was a standalone document with header (boolean)
strip_comments
HTML comments are stripped instead of parsed as raw HTML (boolean)
tab_stop
width (i.e. equivalent number of spaces) of tab stops (integer)
track_changes
track changes setting for docx; one of accept-changes, reject-changes, and all-changes (string)
WriterOptions
Pandoc writer options
Fields:
chunk_template
Template used to generate chunked HTML filenames (string)
cite_method
How to print cites – one of ‘citeproc’, ‘natbib’, or ‘biblatex’ (string)
columns
Characters in a line (for text wrapping) (integer)
dpi
DPI for pixel to/from inch/cm conversions (integer)
email_obfuscation
How to obfuscate emails – one of ‘none’, ‘references’, or ‘javascript’ (string)
epub_chapter_level
Header level for chapters, i.e., how the document is split into separate files (integer)
epub_fonts
Paths to fonts to embed (sequence of strings)
epub_metadata
Metadata to include in EPUB (string|nil)
epub_subdirectory
Subdir for epub in OCF (string)
extensions
Markdown extensions that can be used (sequence of strings)
highlight_style
Style to use for highlighting; see the output of pandoc --print-highlight-style=... for an example
structure. The value nil means that no highlighting is used. (table|nil)
html_math_method
How to print math in HTML; one ‘plain’, ‘gladtex’, ‘webtex’, ‘mathml’, ‘mathjax’, or a table with keys method
and url. (string|table)
html_q_tags
Use <q> tags for quotes in HTML (boolean)
identifier_prefix
Prefix for section & note ids in HTML and for footnote marks in markdown (string)
incremental
True if lists should be incremental (boolean)
listings
Use listings package for code (boolean)
number_offset
Starting number for section, subsection, … (sequence of integers)
number_sections
Number sections in LaTeX (boolean)
prefer_ascii
Prefer ASCII representations of characters when possible (boolean)
reference_doc
Path to reference document if specified (string|nil)
reference_links
Use reference links in writing markdown, rst (boolean)
reference_location
Location of footnotes and references for writing markdown; one of ‘end-of-block’, ‘end-of-section’, ‘end-of-
document’. The common prefix may be omitted when setting this value. (string)
section_divs
Put sections in div tags in HTML (boolean)
setext_headers
Use setext headers for levels 1-2 in markdown (boolean)
slide_level
Force header level of slides (integer|nil)
tab_stop
Tabstop for conversion btw spaces and tabs (integer)
table_of_contents
Include table of contents (boolean)
template
Template to use (Template|nil)
toc_depth
Number of levels to include in TOC (integer)
top_level_division
Type of top-level divisions; one of ‘top-level-part’, ‘top-level-chapter’, ‘top-level-section’, or ‘top-level-default’.
The prefix top-level may be omitted when setting this value. (string)
variables
Variables to set in template; string-indexed table (table)
wrap_text
Option for wrapping text; one of ‘wrap-auto’, ‘wrap-none’, or ‘wrap-preserve’. The wrap- prefix may be
omitted when setting this value. (string)
CommonState
The state used by pandoc to collect information and make it available to readers and writers.
Fields:
input_files
List of input files from command line (List of strings)
output_file
Output file from command line (string or nil)
log
A list of log messages in reverse order (List of LogMessages)
request_headers
Headers to add for HTTP requests; table with header names as keys and header contents as value (table)
resource_path
Path to search for resources like included images (List of strings)
source_url
Absolute URL or directory of first source file (string or nil)
user_data_dir
Directory to search for data files (string or nil)
trace
Whether tracing messages are issued (boolean)
verbosity
Verbosity level; one of INFO, WARNING, ERROR (string)
Doc
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')
List
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.
LogMessage
A pandoc log message. Objects have no fields, but can be converted to a string via tostring.
SimpleTable
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:
caption
Inlines
aligns
column alignments (List of Alignments)
widths
column widths; a (List of numbers)
headers
table header row (List of simple cells, i.e., List of Blocks)
rows
table rows (List of rows, where a row is a list of simple cells, i.e., List of Blocks)
Template
Opaque type holding a compiled template.
Version
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
must_be_at_least
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:
actual
actual version specifier (Version)
expected
minimum expected version (Version)
error_message
optional error message template. The string is used as format string, with the expected and actual versions as
arguments. Defaults to "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'
)
Chunk
Part of a document; usually chunks are each written to a separate file.
Fields:
heading
heading text (Inlines)
id
identifier (string)
level
level of topmost heading in chunk (integer)
number
chunk number (integer)
section_number
hierarchical section number (string)
path
target filepath for this chunk (string)
up
link to the enclosing section, if any (Chunk|nil)
prev
link to the previous section, if any (Chunk|nil)
next
link to the next section, if any (Chunk|nil)
unlisted
whether the section in this chunk should be listed in the TOC even if the chunk has no section number.
(boolean)
contents
the chunk’s block contents (Blocks)
ChunkedDoc
A 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:
chunks
list of chunks that make up the document (list of Chunks).
meta
the document’s metadata (Meta)
toc
table of contents information (table)
Module pandoc
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.
Static Fields
readers
Set of formats that pandoc can parse. All keys in this table can be used as the format value in pandoc.read.
writers
Set of formats that pandoc can generate. All keys in this table can be used as the format value in pandoc.write.
Pandoc
Pandoc (blocks[, meta])
Parameters:
blocks
document content
meta
document meta data
Meta
Meta (table)
MetaValue
MetaBlocks (blocks)
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:
blocks
blocks
Returns: Blocks
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:
inlines
inlines
Returns: Inlines
MetaList (meta_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:
meta_values
list of meta values
Returns: List
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_map
a string-indexed map of meta values
Returns: table
MetaString (str)
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:
str
string value
Returns: string
MetaBool (bool)
Creates a value to be used as MetaBool in meta data; this is the identity function for boolean values and exists only
for completeness.
Parameters:
bool
boolean value
Returns: boolean
Block
BlockQuote (content)
Parameters:
content
block content
BulletList (items)
items
list items
Returns: BulletList object
text
code string
attr
element attributes
DefinitionList (content)
Parameters:
content
list of items
content
block content
attr
element attributes
Returns: Div object
content
figure block content
caption
figure caption
attr
element attributes
Returns: Figure object
Parameters:
level
header level
content
inline content
attr
element attributes
Returns: Header object
HorizontalRule ()
LineBlock (content)
Para (content)
Parameters:
content
inline content
Plain (content)
Parameters:
content
inline content
Parameters:
format
format of content
text
string content
Returns: RawBlock object
caption
table caption
colspecs
column alignments and widths (list of ColSpecs)
head
table head
bodies
table bodies
foot
table foot
attr
element attributes
Returns: Table object
Blocks
Blocks (block_like_elements)
Parameters:
block_like_elements
List where each element can be treated as a Block value, or a single such value.
Returns: Blocks
Inline
Cite (content, citations)
Parameters:
content
List of inlines
citations
List of citations
text
code string
attr
additional attributes
Returns: Code object
Emph (content)
content
inline content
Returns: Emph object
LineBreak ()
content
text for this link
target
the link target
title
brief link description
attr
additional attributes
Parameters:
mathtype
rendering specifier
text
Math content
DisplayMath (text)
text
Math content
InlineMath (text)
text
Math content
Returns: Math object
Note (content)
content
footnote block content
Returns: Note object
Creates a Quoted inline element given the quote type and quoted content.
Parameters:
quotetype
type of quotes to be used
content
inline content
Returns: Quoted object
SingleQuoted (content)
DoubleQuoted (content)
Parameters:
format
format of the contents
text
string content
SmallCaps (content)
Parameters:
content
inline content
SoftBreak ()
Parameters:
content
inline content
attr
additional attributes
Str (text)
Parameters:
text
content
Strikeout (content)
content
inline content
Returns: Strikeout object
Strong (content)
Parameters:
content
inline content
Subscript (content)
Superscript (content)
content
inline content
Returns: Superscript object
Underline (content)
Parameters:
content
inline content
Inlines
Inlines (inline_like_elements)
inline_like_elements
List where each element can be treated as an Inline values, or just a single such value.
Returns: Inlines list
Element components
Attr ([identifier[, classes[, attributes]]])
Parameters:
identifier
element identifier
classes
element classes
attributes
table containing string keys and values
blocks
cell contents (Blocks)
align
text alignment; defaults to AlignDefault (Alignment)
rowspan
number of rows occupied by the cell; defaults to 1 (integer)
colspan
number of columns spanned by the cell; defaults to 1 (integer)
attr
cell attributes (Attr)
Returns:
Cell object
Parameters:
id
citation identifier (like a bibtex key)
mode
citation mode
prefix
citation prefix
suffix
citation suffix
note_num
note number
hash
hash number
Parameters:
start
number of the first list item
style
style used for list numbering
delimiter
delimiter of list numbers
Parameters:
cells
list of table cells in this row
attr
row attributes
rows
list of table rows
attr
table foot attributes
rows
list of table rows
attr
table head attributes
Legacy types
SimpleTable (caption, aligns, widths, headers, rows)
Creates a simple table resembling the old (pre pandoc 2.10) table type.
Parameters:
caption
Inlines
aligns
column alignments (List of Alignments)
widths
column widths; a (List of numbers)
headers
table header row (List of Blocks)
rows
table rows (List of rows, where a row is a list of Blocks)
Returns: SimpleTable object
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
)
Constants
AuthorInText
SuppressAuthor
NormalCitation
AlignLeft
AlignRight
AlignCenter
AlignDefault
Period
TwoParens
Example
LowerRoman
LowerAlpha
sha1
Other constructors
ReaderOptions (opts)
opts
Either a table with a subset of the properties of a ReaderOptions object, or another ReaderOptions object.
Uses the defaults specified in the manual for all properties that are not explicitly specified. Throws an error if
a table contains properties which are not present in a ReaderOptions object. (ReaderOptions|table)
Usage:
-- copy of the reader options that were defined on the command line.
local cli_opts = pandoc.ReaderOptions(PANDOC_READER_OPTIONS)
WriterOptions (opts)
Parameters
opts
Either a table with a subset of the properties of a WriterOptions object, or another WriterOptions object. Uses
the defaults specified in the manual for all properties that are not explicitly specified. Throws an error if a
table contains properties which are not present in a WriterOptions object. (WriterOptions|table)
Returns: new WriterOptions object
Usage:
-- copy of the writer options that were defined on the command line.
local cli_opts = pandoc.WriterOptions(PANDOC_WRITER_OPTIONS)
Helper functions
pipe (command, args, input)
Runs command with arguments, passing it some input, and returns the output.
Parameters:
command
program to run; the executable will be resolved using default system methods (string).
args
list of arguments to pass to the program (list of strings).
input
data which is piped into the program via stdin (string).
Returns:
Raises:
A table containing the keys 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")
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:
element
the block element
filter
a Lua filter (table of functions) to be applied within the block element
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:
element
the inline element
filter
a Lua filter (table of functions) to be applied within the inline element
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.
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).
Parameters:
markup
the markup to be parsed (string|Sources)
format
format specification; defaults to "markdown". See the description above for a complete description of this
parameter. (string|table)
reader_options
options passed to the reader; may be a ReaderOptions object or a table with a subset of the keys and values of
a ReaderOptions object; defaults to the default values documented in the manual. (ReaderOptions|table)
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")
Parameters:
doc
document to convert (Pandoc)
format
format specification; defaults to "html". See the documentation of pandoc.read for a complete description of
this parameter. (string|table)
writer_options
options passed to the writer; may be a WriterOptions object or a table with a subset of the keys and values of a
WriterOptions object; defaults to the default values documented in the manual. (WriterOptions|table)
Usage:
local doc = pandoc.Pandoc(
{pandoc.Para {pandoc.Strong 'Tea'}}
)
local html = pandoc.write(doc, 'html')
assert(html == "<p><strong>Tea</strong></p>")
Runs a classic custom Lua writer, using the functions defined in the current environment.
Parameters:
doc
document to convert (Pandoc)
writer_options
options passed to the writer; may be a WriterOptions object or a table with a subset of the keys and values of a
WriterOptions object; defaults to the default values documented in the manual. (WriterOptions|table)
Returns: - 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
Module pandoc.cli
Command line options and argument parsing.
Fields
default_options
Default CLI options, using a JSON-like representation. (table)
Functions
parse_options
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:
args
list of command line arguments ({string,...})
Returns:
parsed options, using their JSON-like representation. (table)
Since: 3.0
repl
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:
env
Extra environment; the global environment is merged into this table. (table)
Returns:
The result(s) of the last evaluated input, or nothing if the last input resulted in an error.
Since: 3.1.2
Module pandoc.utils
This module exposes internal pandoc functions and utility functions.
Functions
blocks_to_inlines
blocks_to_inlines (blocks[, sep])
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:
blocks
List of Block elements to be flattened. (Blocks)
sep
List of Inline elements inserted as separator between two consecutive blocks; defaults to
{pandoc.LineBreak()}. (Inlines)
Returns:
(Inlines)
Since: 2.2.3
citeproc
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:
doc
document (Pandoc)
Returns:
processed document (Pandoc)
Since: 2.19.1
equals
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:
element1
(any)
element2
(any)
Returns:
from_simple_table
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_tbl
(SimpleTable)
Returns:
table block element (Block)
Since: 2.11
make_sections
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_sections
whether section divs should get an additional number attribute containing the section number. (boolean)
baselevel
shift top-level headings to this level (integer|nil)
blocks
list of blocks to process (Blocks)
Returns:
Since: 2.8
references
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:
doc
document (Pandoc)
Returns:
lift of references. (table)
Since: 2.17
run_json_filter
run_json_filter (doc, filter[, args])
Parameters:
doc
the Pandoc document to filter (Pandoc)
filter
filter to run (string)
args
list of arguments passed to the filter. Defaults to {FORMAT}. ({string,...})
Returns:
filtered document (Pandoc)
Since: 2.1.1
normalize_date
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:
date
the date string (string)
Returns:
normalized date, or nil if normalization failed. (string or nil)
Since: 2.0.6
sha1
sha1 (input)
Parameters:
input
(string)
Returns:
Converts the given element (Pandoc, Meta, Block, or Inline) into a string with all formatting removed.
Parameters:
element
some pandoc AST element (AST element)
Returns:
Since: 2.0.6
to_roman_numeral
to_roman_numeral (n)
Usage:
local to_roman_numeral = pandoc.utils.to_roman_numeral
local pandoc_birth_year = to_roman_numeral(2006)
-- pandoc_birth_year == 'MMVI'
Parameters:
n
positive integer below 4000 (integer)
Returns:
A roman numeral. (string)
Since: 2.0.6
to_simple_table
to_simple_table (tbl)
Parameters:
tbl
a table (Block)
Returns:
type
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:
value
any Lua value (any)
Returns:
type of the given value (string)
Since: 2.17
Version
Version (v)
v
version description (version string, list of integers, or integer)
Returns:
Module pandoc.mediabag
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'
Functions
delete
delete (filepath)
Removes a single entry from the media bag.
Parameters:
filepath
Filename of the item to deleted. The media bag will be left unchanged if no entry with the given filename
exists. (string)
Since: 2.7.3
empty
empty ()
Since: 2.7.3
fetch
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:
source
path to a resource; either a local file path or URI (string)
Returns:
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
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:
doc
document from which to fill the mediabag (Pandoc)
Returns:
modified document (Pandoc)
Since: 2.19
insert
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:
filepath
filename and path relative to the output folder. (string)
mimetype
the item’s MIME type; omit if unknown or unavailable. (string)
contents
the binary contents of the file. (string)
Since: 2.0
items
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:
The iterator function; must be called with the iterator state and the current iterator value.
Iterator state – an opaque value to be passed to the iterator function.
Initial iterator value.
Since: 2.7.3
list
list ()
Returns:
A list of elements summarizing each entry in the media bag. The summary item contains the keys path, type,
and length, giving the filepath, MIME type, and length of contents in bytes, respectively. (table)
Since: 2.0
lookup
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:
filepath
name of the file to look up. (string)
Returns:
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
write
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:
dir
path of the target directory (string)
fp
canonical name (relative path) of resource (string)
Since: 3.0
Module pandoc.List
This module defines pandoc’s list type. It comes with useful methods and convenience functions.
Constructor
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]).
Metamethods
pandoc.List:__concat (list)
Parameters:
list
second list concatenated to the first
Returns: 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, b
any Lua object
Returns:
Methods
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)
Parameters:
list
list to appended
Returns the value and index of the first occurrence of the given item.
Parameters:
needle
item to search for
init
index at which the search is started
Returns: first item equal to the needle, or nil if no such item exists.
Returns the value and index of the first element for which the predicate holds true.
Parameters:
pred
the predicate function
init
index at which the search is started
Returns: first item for which `test` succeeds, or nil if no such item exists.
pandoc.List:filter (pred)
Parameters:
pred
condition items must satisfy.
Returns: a new list containing all items for which `test` was true.
Parameters:
needle
item to search for
init
index at which the search is started
Inserts element value at position pos in list, shifting elements to the next-greater index if necessary.
Parameters:
pos
index of the new value; defaults to length of the list + 1
value
value to insert into the list
pandoc.List:map (fn)
Returns a copy of the current list by applying the given function to all elements.
Parameters:
fn
function which is applied to all list items.
pandoc.List:new([table])
Create a new List. If the optional argument table is given, set the metatable of that value to pandoc.List.
Parameters:
table
table which should be treatable as a list; defaults to an empty table
Returns: the updated input value
pandoc.List:remove ([pos])
Removes the element at position pos, returning the value of the removed element.
Parameters:
pos
position of the list value that will be removed; defaults to the index of the last 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.
Parameters:
comp
Comparison function as described above.
Module pandoc.format
Information about the formats supported by pandoc.
Functions
all_extensions
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:
format
format name (string)
Returns:
Since: 3.0
default_extensions
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:
format
format name (string)
Returns:
default extensions enabled for format (FormatExtensions)
Since: 3.0
extensions
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:
format
format identifier (string)
Returns:
Since: 3.0
from_path
from_path (path)
Parameters:
path
file path, or list of paths (string|{string,...})
Returns:
Since: 3.1.2
Module pandoc.json
JSON module to work with JSON; based on the Aeson Haskell package.
Fields
null
Value used to represent the null JSON value. (light userdata)
Functions
decode
decode (str[, pandoc_types])
Creates a Lua object from a JSON string. The function returns an Inline, Block, Pandoc, Inlines, or Blocks element
if the input can be decoded into represent any of those types. Otherwise the default decoding is applied, using
tables, booleans, numbers, and null to represent the JSON value.
The special handling of AST elements can be disabled by setting pandoc_types to false.
Parameters:
str
JSON string (string)
pandoc_types
whether to use pandoc types when possible. (boolean)
Returns:
encode
encode (object)
Parameters:
object
object to convert (any)
Returns:
JSON encoding of the given object (string)
Since: 3.1.1
Module pandoc.path
Module for file path manipulations.
Fields
separator
The character that separates directories. (string)
search_path_separator
The character that is used to separate the entries in the PATH environment variable. (string)
Functions
directory
directory (filepath)
Gets the directory name, i.e., removes the last directory separator and everything after from the given path.
Parameters:
filepath
path (string)
Returns:
The filepath up to the last directory separator. (string)
Since: 2.12
filename
filename (filepath)
Parameters:
filepath
path (string)
Returns:
is_absolute
is_absolute (filepath)
Parameters:
filepath
path (string)
Returns:
Since: 2.12
is_relative
is_relative (filepath)
filepath
path (string)
Returns:
Since: 2.12
join
join (filepaths)
Parameters:
filepaths
path components ({string,...})
Returns:
make_relative
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:
path
path to be made relative (string)
root
root path (string)
unsafe
whether to allow .. in the result. (boolean)
Returns:
Since: 2.12
normalize
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.
an empty path becomes .
Parameters:
filepath
path (string)
Returns:
Since: 2.12
split
split (filepath)
Parameters:
filepath
path (string)
Returns:
split_extension
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:
filepath
path (string)
Returns:
filepath without extension (string)
extension or empty string (string)
Since: 2.12
split_search_path
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_path
platform-specific search path (string)
Returns:
list of directories in search path ({string,...})
Since: 2.12
treat_strings_as_paths
treat_strings_as_paths ()
Augment the string module such that strings can be used as path objects.
Since: 2.12
Module pandoc.structure
Access to the higher-level document structure, including hierarchical sections and the table of contents.
Functions
make_sections
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:
blocks
document blocks to process (Blocks|Pandoc)
opts
options (table)
Returns:
slide_level
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:
blocks
document body (Blocks|Pandoc)
Returns:
Since: 3.0
split_into_chunks
split_into_chunks (doc[, opts])
Parameters:
doc
document to split (Pandoc)
opts
Splitting options.
`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:
(ChunkedDoc)
Since: 3.0
table_of_contents
table_of_contents (toc_source[, opts])
Parameters:
toc_source
list of command line arguments (Blocks|Pandoc|ChunkedDoc)
opts
options (WriterOptions)
Returns:
Module pandoc.system
Access to the system’s information and file functionality.
Fields
arch
The machine architecture on which the program is running. (string)
os
The operating system on which the program is running. (string)
Functions
cputime
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
environment
environment ()
Returns:
get_working_directory
get_working_directory ()
Since: 2.8
list_directory
list_directory ([directory])
Parameters:
directory
Path of the directory whose contents should be listed. Defaults to .. (string)
Returns:
A table of all entries in directory, except for the special entries (. and ..). (table)
Since: 2.19
make_directory
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:
dirname
name of the new directory (string)
create_parent
create parent directory if necessary (boolean)
Since: 2.19
remove_directory
remove_directory (dirname[, recursive])
Remove an existing, empty directory. If recursive is given, then delete the directory and its contents recursively.
Parameters:
dirname
name of the directory to delete (string)
recursive
delete content recursively (boolean)
Since: 2.19
with_environment
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:
environment
Environment variables and their values to be set before running callback (table)
callback
Action to execute in the custom environment (function)
Returns:
Since: 2.7.3
with_temporary_directory
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_dir
Parent directory to create the directory in. If this parameter is omitted, the system’s canonical temporary
directory is used. (string)
templ
Directory name template. (string)
callback
Function which takes the name of the temporary directory as its first argument. (function)
Returns:
Since: 2.8
with_working_directory
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:
directory
Directory in which the given callback should be executed (string)
callback
Action to execute in the given directory (function)
Returns:
The results of the call to callback.
Since: 2.7.3
Module pandoc.layout
Plain-text document layouting.
Fields
blankline
Inserts a blank line unless one exists already.
cr
A carriage return. Does nothing if we're at the beginning of a line; otherwise inserts a newline.
empty
The empty document.
space
A breaking (reflowable) space.
Functions
after_break
after_break (text)
Creates a Doc which is conditionally included only if it comes at the beginning of a line.
Parameters
text
before_non_blank
before_non_blank (doc)
Parameters
doc
document (Doc)
Returns
blanklines
blanklines (n)
Returns
conditional blank lines (Doc)
braces
braces (doc)
Parameters
doc
document (Doc)
Returns
doc enclosed by {}. (Doc)
brackets
brackets (doc)
doc
document (Doc)
Returns
cblock
cblock (doc, width)
Creates a block with the given width and content, aligned centered.
Parameters
doc
document (Doc)
width
Returns
doc, aligned centered in a block with maxwidth chars per line. (Doc)
chomp
chomp (doc)
Parameters
doc
document (Doc)
Returns
concat
concat (docs[, sep])
Concatenates a list of Docs.
Parameters
docs
sep
Returns
concatenated doc (Doc)
double_quotes
double_quotes (doc)
doc
document (Doc)
Returns
flush
flush (doc)
Parameters
doc
document (Doc)
Returns
hang
hang (doc, ind, start)
Parameters
doc
document (Doc)
ind
indentation width (integer)
start
document (Doc)
Returns
doc prefixed by start on the first line, subsequent lines indented by ind spaces. (Doc)
inside
inside (contents, start, end)
Parameters
contents
document (Doc)
start
document (Doc)
end
document (Doc)
Returns
enclosed contents (Doc)
lblock
lblock (doc, width)
Creates a block with the given width and content, aligned to the left.
Parameters
doc
document (Doc)
width
Returns
doc put into block with max width chars per line. (Doc)
literal
literal (text)
Parameters
text
Returns
nest
nest (doc, ind)
Parameters
doc
document (Doc)
ind
Returns
nestle
nestle (doc)
Parameters
doc
document (Doc)
Returns
nowrap
nowrap (doc)
Parameters
doc
document (Doc)
Returns
same as input, but non-reflowable (Doc)
parens
parens (doc)
Parameters
doc
document (Doc)
Returns
doc enclosed by (). (Doc)
prefixed
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
doc
document (Doc)
prefix
quotes
quotes (doc)
doc
document (Doc)
Returns
doc enclosed in '. (Doc)
rblock
rblock (doc, width)
Creates a block with the given width and content, aligned to the right.
Parameters
doc
document (Doc)
width
doc, right aligned in a block with maxwidth chars per line. (Doc)
vfill
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
border
render
render (doc[, colwidth])
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
doc
document (Doc)
colwidth
Returns
is_empty
is_empty (doc)
Parameters
doc
document (Doc)
Returns
Parameters
doc
document (Doc)
Returns
min_offset
min_offset (doc)
Parameters
doc
document (Doc)
Returns
offset
offset (doc)
doc
document (Doc)
Returns
doc width (integer|string)
real_length
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
str
update_column
update_column (doc, i)
Returns the column that would be occupied by the last laid out character.
Parameters
doc
document (Doc)
Returns
Module pandoc.scaffolding
Scaffolding for custom writers.
Fields
Writer
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)
Module pandoc.text
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
end
Functions
fromencoding
fromencoding (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:
s
string to be converted (string)
encoding
target encoding (string)
Returns:
UTF-8 string (string)
Since: 3.0
len
len (s)
Since: 2.0.3
lower
lower (s)
s
UTF-8 string to convert to lowercase (string)
Returns:
reverse
reverse (s)
s
UTF-8 string to revert (string)
Returns:
Reversed s (string)
Since: 2.0.3
sub
sub (s, i[, j])
toencoding
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:
s
UTF-8 string (string)
enc
target encoding (string)
Returns:
re-encoded string (string)
Since: 3.0
upper
upper (s)
Since: 2.0.3
Module pandoc.template
Handle pandoc templates.
apply
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:
template
template to apply (Template)
context
variable values (table)
Returns:
compile
compile (template[, templates_path])
Parameters:
template
template string (string)
templates_path
parameter to determine a default path and extension for partials; uses the data files templates path by
default. (string)
Returns:
compiled template (Template)
default
default ([writer])
Returns the default template for a given writer as a string. An error if no such template can be found.
Parameters:
writer
name of the writer for which the template should be retrieved; defaults to the global FORMAT.
Returns:
raw template (string)
meta_to_context
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:
meta
document metadata (Meta)
blocks_writer
converter from Blocks to Doc values (function)
inlines_writer
converter from Inlines to Doc values (function)
Returns:
Module pandoc.types
Constructors for types which are not part of the pandoc AST.
Version
Version (version_specifier)
version_specifier
Version specifier: this can be a version string like '2.7.3', a list of integers like {2, 7, 3}, a single integer, or
a Version.
Returns:
Module pandoc.zip
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:
Functions
Archive
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_entries
binary archive data or list of entries; defaults to an empty list (string|{zip.Entry,...})
Returns:
new Archive (zip.Archive)
Since: 3.0
Entry
Entry (path, contents[, modtime])
Generates a ZipEntry from a filepath, uncompressed content, and the file’s modification time.
Parameters:
path
file path in archive (string)
contents
uncompressed contents (string)
modtime
modification time (integer)
Returns:
a new zip archive entry (zip.Entry)
Since: 3.0
read_entry
read_entry (filepath[, opts])
zip
zip (filepaths[, opts])
Types
zip.Archive
Properties
entries
Methods
bytestring
bytestring (self)
extract
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:
self
(zip.Archive)
opts
zip options (table)
zip.Entry
Properties
modtime
path
Methods
contents
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:
self
(zip.Entry)
password
password for entry (string)
Returns:
binary contents (string)
Introduction
Lua filter structure
Filters on element sequences
Traversal order
Typewise traversal
Topdown traversal
Global variables
Pandoc Module
Element creation
Exposed pandoc functionality
Examples
Macro substitution
Center images in LaTeX and HTML
Center images in LaTeX and HTML
output
Setting the date in the metadata
Remove spaces before citations
Replacing placeholders with their
metadata value
Modifying pandoc’s MANUAL.txt for
man pages
Creating a handout from a paper
Counting words in a document
Converting ABC code to music notation
Building images with TikZ
Pandoc
walk
Meta
MetaValue
Block
Common methods
BlockQuote
BulletList
CodeBlock
DefinitionList
Div
Figure
Header
HorizontalRule
LineBlock
OrderedList
Para
Plain
RawBlock
Table
Blocks
Methods
Inline
Common methods
Cite
Code
Emph
Image
LineBreak
Link
Math
Math
Note
Quoted
RawInline
SmallCaps
SoftBreak
Space
Span
Str
Strikeout
Strong
Subscript
Superscript
Underline
Inlines
Methods
Element components
Attr
Attributes
Caption
Cell
Citation
ColSpec
ListAttributes
Row
TableBody
TableFoot
TableHead
ReaderOptions
WriterOptions
CommonState
Doc
List
LogMessage
SimpleTable
Template
Version
must_be_at_least
Chunk
ChunkedDoc
Module pandoc
Static Fields
readers
writers
Pandoc
Pandoc (blocks[, meta])
Meta
Meta (table)
MetaValue
MetaBlocks (blocks)
MetaInlines (inlines)
MetaList (meta_values)
MetaMap (key_value_map)
MetaString (str)
MetaBool (bool)
Block
BlockQuote (content)
BulletList (items)
CodeBlock (text[, attr])
DefinitionList (content)
Div (content[, attr])
Figure (content[, caption[, attr]])
Header (level, content[, attr])
HorizontalRule ()
LineBlock (content)
OrderedList (items[, listAttributes])
Para (content)
Plain (content)
RawBlock (format, text)
Table (caption, colspecs, head, bodies, foot[, attr])
Blocks
Blocks (block_like_elements)
Inline
Cite (content, citations)
Code (text[, attr])
Emph (content)
Image (caption, src[, title[, attr]])
LineBreak ()
Link (content, target[, title[, attr]])
Math (mathtype, text)
DisplayMath (text)
InlineMath (text)
Note (content)
Quoted (quotetype, content)
SingleQuoted (content)
DoubleQuoted (content)
RawInline (format, text)
SmallCaps (content)
SoftBreak ()
Space ()
Span (content[, attr])
Str (text)
Strikeout (content)
Strong (content)
Subscript (content)
Superscript (content)
Underline (content)
Inlines
Inlines (inline_like_elements)
Element components
Attr ([identifier[, classes[, attributes]]])
Cell (blocks[, align[, rowspan[, colspan[, attr]]]])
Citation (id, mode[, prefix[, suffix[, note_num[, hash]]]])
ListAttributes ([start[, style[, delimiter]]])
Row ([cells[, attr]])
TableFoot ([rows[, attr]])
TableHead ([rows[, attr]])
Legacy types
SimpleTable (caption, aligns, widths, headers, rows)
Constants
Other constructors
ReaderOptions (opts)
WriterOptions (opts)
Helper functions
pipe (command, args, input)
walk_block (element, filter)
walk_inline (element, filter)
read (markup[, format[, reader_options]])
write (doc[, format[, writer_options]])
write_classic (doc[, writer_options])
Module pandoc.cli
Fields
default_options
Functions
parse_options
repl
Module pandoc.utils
Functions
blocks_to_inlines
citeproc
equals
from_simple_table
make_sections
references
run_json_filter
normalize_date
sha1
stringify
to_roman_numeral
to_simple_table
type
Version
Module pandoc.mediabag
Functions
delete
empty
fetch
fill
insert
items
list
lookup
write
Module pandoc.List
Constructor
Metamethods
pandoc.List:__concat (list)
pandoc.List:__eq (a, b)
Methods
pandoc.List:clone ()
pandoc.List:extend (list)
pandoc.List:find (needle, init)
pandoc.List:find_if (pred, init)
pandoc.List:filter (pred)
pandoc.List:includes (needle, init)
pandoc.List:insert ([pos], value)
pandoc.List:map (fn)
pandoc.List:new([table])
pandoc.List:remove ([pos])
pandoc.List:sort ([comp])
Module pandoc.format
Functions
all_extensions
default_extensions
extensions
extensions
from_path
Module pandoc.json
Fields
null
Functions
decode
encode
Module pandoc.path
Fields
separator
search_path_separator
Functions
directory
filename
is_absolute
is_relative
join
make_relative
normalize
split
split_extension
split_search_path
treat_strings_as_paths
Module pandoc.structure
Functions
make_sections
slide_level
split_into_chunks
table_of_contents
Module pandoc.system
Fields
arch
os
Functions
cputime
environment
get_working_directory
list_directory
make_directory
remove_directory
with_environment
with_temporary_directory
with_temporary_directory
with_working_directory
Module pandoc.layout
Fields
blankline
cr
empty
space
Functions
after_break
before_non_blank
blanklines
braces
brackets
cblock
chomp
concat
double_quotes
flush
hang
inside
lblock
literal
nest
nestle
nowrap
parens
prefixed
quotes
rblock
vfill
render
is_empty
height
min_offset
offset
real_length
update_column
Module pandoc.scaffolding
Fields
Writer
Module pandoc.text
Functions
fromencoding
len
lower
reverse
sub
toencoding
upper
Module pandoc.template
apply
compile
default
meta_to_context
Module pandoc.types
Version
Module pandoc.zip
Functions
Archive
Entry
read_entry
zip
Types
zip.Archive
zip.Entry