2018-11-23 20:37:08 +05:30
---
date: "2018-11-23:00:00+02:00"
title: "External renderers"
slug: "external-renderers"
weight: 40
2020-12-09 12:17:06 +05:30
toc: false
2018-11-23 20:37:08 +05:30
draft: false
menu:
sidebar:
parent: "advanced"
name: "External renderers"
weight: 40
identifier: "external-renderers"
---
# Custom files rendering configuration
2020-12-09 12:17:06 +05:30
**Table of Contents**
{{< toc > }}
2020-11-28 11:42:22 +05:30
Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries,
2019-03-10 02:45:45 +05:30
it is just a matter of:
2019-08-08 10:17:57 +05:30
2020-12-09 12:17:06 +05:30
- installing external binaries
- add some configuration to your `app.ini` file
- restart your Gitea instance
2018-11-23 20:37:08 +05:30
2020-01-21 05:04:23 +05:30
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 20:37:08 +05:30
## Installing external binaries
2020-11-28 11:42:22 +05:30
In order to get file rendering through external binaries, their associated packages must be installed.
2018-11-23 20:37:08 +05:30
If you're using a Docker image, your `Dockerfile` should contain something along this lines:
2020-12-09 12:17:06 +05:30
```docker
2019-09-26 12:34:53 +05:30
FROM gitea/gitea:{{< version > }}
2018-11-23 20:37:08 +05:30
[...]
COPY custom/app.ini /data/gitea/conf/app.ini
[...]
2020-10-16 00:00:25 +05:30
RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng libffi-dev py-pip python3-dev py3-pip py3-pyzmq
2018-11-23 20:37:08 +05:30
# install any other package you need for your external renderers
RUN pip3 install --upgrade pip
RUN pip3 install -U setuptools
2020-11-28 11:42:22 +05:30
RUN pip3 install jupyter docutils
2018-11-23 20:37:08 +05:30
# 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` :
2020-12-09 12:17:06 +05:30
```ini
2018-11-23 20:37:08 +05:30
[markup.asciidoc]
ENABLED = true
FILE_EXTENSIONS = .adoc,.asciidoc
2020-09-02 20:31:28 +05:30
RENDER_COMMAND = "asciidoctor -s -a showtitle --out-file=- -"
2018-11-23 20:37:08 +05:30
; 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-08 01:19:04 +05:30
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 17:04:59 +05:30
[markup.sanitizer.TeX]
2019-12-08 01:19:04 +05:30
; 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 17:04:59 +05:30
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-08 01:19:04 +05:30
2018-11-23 20:37:08 +05:30
Once your configuration changes have been made, restart Gitea to have changes take effect.
2020-04-29 17:04:59 +05:30
**Note**: Prior to Gitea 1.12 there was a single `markup.sanitiser` section with keys that were redefined for multiple rules, however,
2020-09-02 20:31:28 +05:30
there were significant problems with this method of configuration necessitating configuration through multiple sections.