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
2021-06-24 02:39:51 +05:30
RENDER_COMMAND = "jupyter nbconvert --stdin --stdout --to html --template basic"
IS_INPUT_FILE = false
2018-11-23 20:37:08 +05:30
[markup.restructuredtext]
ENABLED = true
FILE_EXTENSIONS = .rst
2021-04-30 12:20:55 +05:30
RENDER_COMMAND = "timeout 30s pandoc +RTS -M512M -RTS -f rst"
2018-11-23 20:37:08 +05:30
IS_INPUT_FILE = false
```
2022-09-13 22:03:37 +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 sanitizer. The example below could be used to support server-side [KaTeX ](https://katex.org/ ) rendering output from [`pandoc` ](https://pandoc.org/ ).
2019-12-08 01:19:04 +05:30
```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.
2022-09-13 22:03:37 +05:30
; - note this is different from the built-in math support in our markdown parser which uses < code >
2019-12-08 01:19:04 +05:30
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
```
2021-06-24 02:39:51 +05:30
You must define `ELEMENT` and `ALLOW_ATTR` in each section.
2020-04-29 17:04:59 +05:30
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
2021-06-24 02:39:51 +05:30
To apply a sanitisation rules only for a specify external renderer they must use the renderer name, e.g. `[markup.sanitizer.asciidoc.rule-1]` , `[markup.sanitizer.<renderer>.rule-1]` .
**Note**: If the rule is defined above the renderer ini section or the name does not match a renderer it is applied to every renderer.
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.
2021-05-07 14:13:41 +05:30
2022-02-14 19:26:17 +05:30
### Example: HTML
Render HTML files directly:
```ini
[markup.html]
ENABLED = true
FILE_EXTENSIONS = .html,.htm
RENDER_COMMAND = cat
; Input is not a standard input but a file
IS_INPUT_FILE = true
[markup.sanitizer.html.1]
ELEMENT = div
ALLOW_ATTR = class
[markup.sanitizer.html.2]
ELEMENT = a
ALLOW_ATTR = class
```
2021-06-24 02:39:51 +05:30
### Example: Office DOCX
Display Office DOCX files with [`pandoc` ](https://pandoc.org/ ):
2022-07-28 06:52:47 +05:30
2021-06-24 02:39:51 +05:30
```ini
[markup.docx]
ENABLED = true
FILE_EXTENSIONS = .docx
RENDER_COMMAND = "pandoc --from docx --to html --self-contained --template /path/to/basic.html"
[markup.sanitizer.docx.img]
ALLOW_DATA_URI_IMAGES = true
```
The template file has the following content:
2022-07-28 06:52:47 +05:30
2021-06-24 02:39:51 +05:30
```
$body$
```
### Example: Jupyter Notebook
Display Jupyter Notebook files with [`nbconvert` ](https://github.com/jupyter/nbconvert ):
2022-07-28 06:52:47 +05:30
2021-06-24 02:39:51 +05:30
```ini
[markup.jupyter]
ENABLED = true
FILE_EXTENSIONS = .ipynb
RENDER_COMMAND = "jupyter-nbconvert --stdin --stdout --to html --template basic"
[markup.sanitizer.jupyter.img]
ALLOW_DATA_URI_IMAGES = true
```
2021-05-07 14:13:41 +05:30
## Customizing CSS
2022-07-28 06:52:47 +05:30
The external renderer is specified in the .ini in the format `[markup.XXXXX]` and the HTML supplied by your external renderer will be wrapped in a `<div>` with classes `markup` and `XXXXX` . The `markup` class provides out of the box styling (as does `markdown` if `XXXXX` is `markdown` ). Otherwise you can use these classes to specifically target the contents of your rendered HTML.
2021-05-07 14:13:41 +05:30
And so you could write some CSS:
2022-07-28 06:52:47 +05:30
2021-05-07 14:13:41 +05:30
```css
.markup.XXXXX html {
font-size: 100%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
.markup.XXXXX body {
color: #444 ;
font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
font-size: 12px;
line-height: 1.7;
padding: 1em;
margin: auto;
max-width: 42em;
background: #fefefe ;
}
.markup.XXXXX p {
color: orangered;
}
```
Add your stylesheet to your custom directory e.g `custom/public/css/my-style-XXXXX.css` and import it using a custom header file `custom/templates/custom/header.tmpl` :
2022-07-28 06:52:47 +05:30
2021-05-07 14:13:41 +05:30
```html
2021-07-16 01:19:12 +05:30
< link type = "text/css" href = "{{AppSubUrl}}/assets/css/my-style-XXXXX.css" / >
2021-05-07 14:13:41 +05:30
```