Custom files rendering configuration

Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries, it is just a matter of:

  • installing external binaries
  • add some configuration to your app.ini file
  • restart your Gitea instance

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 page.

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:

  1. FROM gitea/gitea:1.20.6
  2. [...]
  3. COPY custom/app.ini /data/gitea/conf/app.ini
  4. [...]
  5. RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng libffi-dev py-pip python3-dev py3-pip py3-pyzmq
  6. # install any other package you need for your external renderers
  7. RUN pip3 install --upgrade pip
  8. RUN pip3 install -U setuptools
  9. RUN pip3 install jupyter docutils
  10. # 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:

  1. [markup.asciidoc]
  2. ENABLED = true
  3. FILE_EXTENSIONS = .adoc,.asciidoc
  4. RENDER_COMMAND = "asciidoctor -s -a showtitle --out-file=- -"
  5. ; Input is not a standard input but a file
  6. IS_INPUT_FILE = false
  7. [markup.jupyter]
  8. ENABLED = true
  9. FILE_EXTENSIONS = .ipynb
  10. RENDER_COMMAND = "jupyter nbconvert --stdin --stdout --to html --template basic"
  11. IS_INPUT_FILE = false
  12. [markup.restructuredtext]
  13. ENABLED = true
  14. FILE_EXTENSIONS = .rst
  15. RENDER_COMMAND = "timeout 30s pandoc +RTS -M512M -RTS -f rst"
  16. IS_INPUT_FILE = false

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 package as our HTML sanitizer. The example below could be used to support server-side KaTeX rendering output from pandoc.

  1. [markup.sanitizer.TeX]
  2. ; Pandoc renders TeX segments as <span>s with the "math" class, optionally
  3. ; with "inline" or "display" classes depending on context.
  4. ; - note this is different from the built-in math support in our markdown parser which uses <code>
  5. ELEMENT = span
  6. ALLOW_ATTR = class
  7. REGEXP = ^\s*((math(\s+|$)|inline(\s+|$)|display(\s+|$)))+
  8. [markup.markdown]
  9. ENABLED = true
  10. FILE_EXTENSIONS = .md,.markdown
  11. RENDER_COMMAND = pandoc -f markdown -t html --katex

You must define ELEMENT and ALLOW_ATTR in each section.

To define multiple entries, add a unique alphanumeric suffix (e.g., [markup.sanitizer.1] and [markup.sanitizer.something]).

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.

Once your configuration changes have been made, restart Gitea to have changes take effect.

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.

Example: HTML

Render HTML files directly:

  1. [markup.html]
  2. ENABLED = true
  3. FILE_EXTENSIONS = .html,.htm
  4. RENDER_COMMAND = cat
  5. ; Input is not a standard input but a file
  6. IS_INPUT_FILE = true
  7. [markup.sanitizer.html.1]
  8. ELEMENT = div
  9. ALLOW_ATTR = class
  10. [markup.sanitizer.html.2]
  11. ELEMENT = a
  12. ALLOW_ATTR = class

Example: Office DOCX

Display Office DOCX files with pandoc:

  1. [markup.docx]
  2. ENABLED = true
  3. FILE_EXTENSIONS = .docx
  4. RENDER_COMMAND = "pandoc --from docx --to html --self-contained --template /path/to/basic.html"
  5. [markup.sanitizer.docx.img]
  6. ALLOW_DATA_URI_IMAGES = true

The template file has the following content:

  1. $body$

Example: Jupyter Notebook

Display Jupyter Notebook files with nbconvert:

  1. [markup.jupyter]
  2. ENABLED = true
  3. FILE_EXTENSIONS = .ipynb
  4. RENDER_COMMAND = "jupyter-nbconvert --stdin --stdout --to html --template basic"
  5. [markup.sanitizer.jupyter.img]
  6. ALLOW_DATA_URI_IMAGES = true

Customizing CSS

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.

And so you could write some CSS:

  1. .markup.XXXXX html {
  2. font-size: 100%;
  3. overflow-y: scroll;
  4. -webkit-text-size-adjust: 100%;
  5. -ms-text-size-adjust: 100%;
  6. }
  7. .markup.XXXXX body {
  8. color: #444;
  9. font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
  10. font-size: 12px;
  11. line-height: 1.7;
  12. padding: 1em;
  13. margin: auto;
  14. max-width: 42em;
  15. background: #fefefe;
  16. }
  17. .markup.XXXXX p {
  18. color: orangered;
  19. }

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:

  1. <link rel="stylesheet" href="{{AppSubUrl}}/assets/css/my-style-XXXXX.css" />