API Introduction
This page describes the API of the PyMdDoc
package.
The MarkdownDoc
class maintains the main interface for creating documents. It manages a single markdown document which can be rendered and converted to another document type. It can be created from a string using from_str()
or a file using from_file()
.
I will use this functions to make html outputs more readable.
Ingest Markdown Documents
The following example demonstrates how to create a simple markdown document.
stdout:
MarkdownDoc({'author': 'John Doe', 'date': '2021-01-01', 'title': 'Example Markdown'})
You can extract the YAML header metadata from the document using the extract_metadata()
method. This method returns a dictionary of the metadata from the document.
text:
{'author': 'John Doe', 'date': '2021-01-01', 'title': 'Example Markdown'}
Rendering Documents
There are several different methods for rendering markdown documents to other document types.
You can use the method render_to_string()
to convert the document to any text-based format.
stdout:
<h1 id="header-1">
Header 1
</h1>
<p>
You can use italics and bold text as supported by pandoc.
</p>
<div class="note" data-font-size="1.5em" id="favorite">
<p>
You can also create Div blocks with ids, attributes, and other
attributes.
</p>
</div>
<p>
You can also use code snippets:
</p>
<p>
<code>
python def example_function(): return "Hello, world!"
</code>
.
<br/>
</p>
To convert to pdf or docx formats, you will want to write to a file. In this case, you can use the render_to_file()
method. It can automatically infer the file type using the file extension.
There are also some type-specific methods for rendering html, pdf, or docx files.
stdout:
<h1 id="header-1">
Header 1
</h1>
<p>
You can use italics and bold text as supported by pandoc.
</p>
<div class="note" data-font-size="1.5em" id="favorite">
<p>
You can also create Div blocks with ids, attributes, and other
attributes.
</p>
</div>
<p>
You can also use code snippets:
</p>
<p>
<code>
python def example_function(): return "Hello, world!"
</code>
.
<br/>
</p>
Jinja Templating Features
You can pass variables to be inserted in the markdown document using Jinja templating with the vars
argument to most render functions.
stdout:
<p>
Hello, world!
</p>
While Pandoc supports a number of output formats, it is necessarily inconsistent in how it renders various elements of the document. Using the OUTPUT_FORMAT
constant available through PyMdDoc
, you can conditionally render elements based on the output format.
stdout:
<p>This is an HTML document.</p>
Pandoc Arguments
You can use the pandoc_args
argument to pass additional arguments to the pandoc command from any render function. This can be useful for specifying the output format or other options.
Pass arguments using the PandocArgs
dataclass. The docstring of that class contains a list of all the available arguments.
stdout:
Dataclass that contains arguments for pandoc conversion.
See this page for more about pandoc markdown:
https://quarto.org/docs/authoring/markdown-basics.html
Args:
standalone: adds the --standalone flag to the pandoc command.
embed_resources: adds the --embed-resources flag to the pandoc command.
toc: adds the --toc flag to the pandoc command.
citeproc_bibliography: adds the --citeproc and --bibliography {fname}
arguments to the pandoc command.
template: adds the --template={fname} argument to the pandoc command.
extra_args: additional arguments to add to the pandoc command.
**pandoc_kwargs: passed to pandoc.
And you can pass it as an argument to any render function.
See other pages for examples of using custom functions within the markdown document.