2018-11-23 08:07:08 -07:00
---
date: "2018-11-23:00:00+02:00"
title: "External renderers"
slug: "external-renderers"
weight: 40
toc: true
draft: false
menu:
sidebar:
parent: "advanced"
name: "External renderers"
weight: 40
identifier: "external-renderers"
---
# Custom files rendering configuration
Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries,
2019-03-09 14:15:45 -07:00
it is just a matter of:
2019-08-07 22:47:57 -06:00
2018-11-23 08:07:08 -07:00
* installing external binaries
* add some configuration to your `app.ini` file
2019-03-09 14:15:45 -07:00
* restart your Gitea instance
2018-11-23 08:07:08 -07:00
2020-01-20 16:34:23 -07:00
This supports rendering of whole files. If you want to render code blocks in markdown you would need to do something with javascript. See some examples on the [Customizing Gitea ](../customizing-gitea ) page.
2018-11-23 08:07:08 -07:00
## Installing external binaries
In order to get file rendering through external binaries, their associated packages must be installed.
If you're using a Docker image, your `Dockerfile` should contain something along this lines:
```
2019-09-26 01:04:53 -06:00
FROM gitea/gitea:{{< version > }}
2018-11-23 08:07:08 -07:00
[...]
COPY custom/app.ini /data/gitea/conf/app.ini
[...]
2020-04-21 14:36:27 -06:00
RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng python-dev py-pip python3-dev py3-pip py3-pyzmq
2018-11-23 08:07:08 -07:00
# install any other package you need for your external renderers
RUN pip3 install --upgrade pip
RUN pip3 install -U setuptools
RUN pip3 install jupyter matplotlib docutils
# add above any other python package you may need to install
```
## `app.ini` file configuration
add one `[markup.XXXXX]` section per external renderer on your custom `app.ini` :
```
[markup.asciidoc]
ENABLED = true
FILE_EXTENSIONS = .adoc,.asciidoc
2019-10-25 04:11:14 -06:00
RENDER_COMMAND = "asciidoctor -e -a leveloffset=-1 --out-file=- -"
2018-11-23 08:07:08 -07:00
; Input is not a standard input but a file
IS_INPUT_FILE = false
[markup.jupyter]
ENABLED = true
FILE_EXTENSIONS = .ipynb
RENDER_COMMAND = "jupyter nbconvert --stdout --to html --template basic "
IS_INPUT_FILE = true
[markup.restructuredtext]
ENABLED = true
FILE_EXTENSIONS = .rst
RENDER_COMMAND = rst2html.py
IS_INPUT_FILE = false
```
2019-12-07 12:49:04 -07:00
If your external markup relies on additional classes and attributes on the generated HTML elements, you might need to enable custom sanitizer policies. Gitea uses the [`bluemonday` ](https://godoc.org/github.com/microcosm-cc/bluemonday ) package as our HTML sanitizier. The example below will support [KaTeX ](https://katex.org/ ) output from [`pandoc` ](https://pandoc.org/ ).
```ini
2020-04-29 05:34:59 -06:00
[markup.sanitizer.TeX]
2019-12-07 12:49:04 -07:00
; Pandoc renders TeX segments as < span > s with the "math" class, optionally
; with "inline" or "display" classes depending on context.
ELEMENT = span
ALLOW_ATTR = class
REGEXP = ^\s*((math(\s+|$)|inline(\s+|$)|display(\s+|$)))+
[markup.markdown]
ENABLED = true
FILE_EXTENSIONS = .md,.markdown
RENDER_COMMAND = pandoc -f markdown -t html --katex
```
2020-04-29 05:34:59 -06:00
You must define `ELEMENT` , `ALLOW_ATTR` , and `REGEXP` in each section.
To define multiple entries, add a unique alphanumeric suffix (e.g., `[markup.sanitizer.1]` and `[markup.sanitizer.something]` ).
2019-12-07 12:49:04 -07:00
2018-11-23 08:07:08 -07:00
Once your configuration changes have been made, restart Gitea to have changes take effect.
2020-04-29 05:34:59 -06:00
**Note**: Prior to Gitea 1.12 there was a single `markup.sanitiser` section with keys that were redefined for multiple rules, however,
there were significant problems with this method of configuration necessitating configuration through multiple sections.