Skip to content

A pandoc filter to run python code chunks and integrate their output

License

Notifications You must be signed in to change notification settings

bart6114/pandoc-run-python

Repository files navigation

PyPI CICD Downloads

pandoc-run-python

This is a Pandoc filter!

More specifically it is a filter that allows you to run Python code blocks in your markdown and insert the output of them back into your markdown file. It exists because I enjoy literate programming too much.

It supports capturing the following output of Python code blocks:

  • anything printed to stdout
  • matplotlib-based figures

Warning 🚨

Make sure that you trust the Python code in your markdown files, they will be executed as-is. A cell with content like os.system("sudo rm -rf /") would be painful. In other words, if at any point in the future I send you a markdown file called money_factory.md you should NOT run it.

How to install

pip install pandoc-run-python

Also check out the notes on auto-formatting for information on how to install black as a dependency.

What does it do?

Let's say you have the following markdown file:

## What is fast, loud and crunchy?

```python
print("A rocket chip!")
```

When you use this as en example to explain what the output of this print statement would be, you'd probably don't want to type the expected output of this command manually. Ideally you want it to be actually evaluated and the output inserted into the markdown file. This way you would automatically end up with something like this:

## What is fast, loud and crunchy?

```python
print("A rocket chip!")
```

```
A rocket chip!
```

pandoc-run-python to the rescue!

Coincidentally, the above is exactly what the pandoc-run-python filter provides. How can you achieve this? You need to slightly alter your markdown to specify that a python codeblock needs to be evaluated. More specifically you need to add classes to the codeblock as we did below (I don't like the syntax neither, but this is the pandoc way to do it).

## What is fast, loud and crunchy?

``` {.python .run}
print("A rocket chip!")
```

If the previous example would be in a file call loud.md, using this pandoc filter you could execute the following command to generate the processed markdown.

pandoc loud.md -F pandoc-run-python -t markdown
## What is fast, loud and crunchy?

``` {.python .run}
print("A rocket chip!")
```

``` {.python-output}
A rocket chip!
```

Auto-formatting

By default, black is run on all code chunks that have the python class, also those that do not have the run class. You can avoid this auto-formatting behaviour by adding the no-black class to the code chunk.

However, black is an optional dependency. If it cannot be imported code formatting will be skipped. You can install this package also together with black by running pip install pandoc-run-python[black].

Code chunk configuration

This filter runs on all code chunks that has at least the python and run class.

The following classes are used to determine filter logic:

  • python and run: evaluate code and insert output in a new codeblock / image below the original python codeblock
  • no-black: skip running of the black formatter on python code chunks

About

A pandoc filter to run python code chunks and integrate their output

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages