Struct pandoc::Pandoc[][src]

pub struct Pandoc { /* fields omitted */ }

the argument builder

Methods

impl Pandoc
[src]

Get a new Pandoc object This function returns a builder object to configure the Pandoc execution.

Add a path hint to search for the LaTeX executable.

The supplied path is searched first for the latex executable, then the environment variable PATH, then some hard-coded location hints.

Add a path hint to search for the Pandoc executable.

The supplied path is searched first for the Pandoc executable, then the environment variable PATH, then some hard-coded location hints.

Set or overwrite the document-class.

Set whether Pandoc should print the used command-line

If set to true, the command-line to execute pandoc (as a subprocess) will be displayed on stdout.

Set or overwrite the output format.

Set or overwrite the input format

Add additional input files

The order of adding the files is the order in which they are processed, hence the order is important. This function does not work, if input has been already set to standard input using set_input.

Set input for Pandoc.

The input is given with pandoc::InputKind and overrides any inputs already supplied.

Example

fn main() {
    // pass in a string using standard input:
    let markdown = "**very** _important".into();
    let mut p = pandoc::new(); // assign to variable to increase life time
    p.set_input(pandoc::InputKind::Pipe(markdown));
}

Set or overwrite the output filename.

Set the file name of the bibliography database.

Set the filename of the citation style file.

Enable the generation of a table of contents

By default, documents are transformed as they are. If this option is set, a table of contents is added right in front of the actual document.

Treat top-level headers as chapters in LaTeX, ConTeXt, and DocBook output.

Set custom prefix for sections.

If this function is called, all sections will be numbered. Normally, sections in LaTeX, ConTeXt, HTML, or EPUB output are unnumbered.

Set a custom latex template.

Set the header level that causes a new slide to be generated.

Set a custom variable.

This method sets a custom Pandoc variable. It is adviced not to use this function, because there are convenience functions for most of the available variables.

Add a Pandoc filter.

Pandoc parses any of the supported input formats to an abstract syntax tree (AST). If a filter is specified, it will receive a JSON representation of this AST and can transform it to its liking and add/modify/remove elements. The output is then passed back to Pandoc.

Add a PandocOption.

generate a latex template from the given settings

Warning: this function can panic in a lot of places.

Execute the Pandoc configured command.

A successful Pandoc run can return either the path to a file written by the operation, or the result of the operation from stdio.

The PandocOutput variant returned depends on the OutputKind configured:

Trait Implementations

impl Default for Pandoc
[src]

Returns the "default value" for a type. Read more

impl Clone for Pandoc
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Pandoc

impl Sync for Pandoc