diff options
author | Juan Pablo Santos RodrÃguez <juanpablo.santos@gmail.com> | 2018-11-23 16:07:08 +0100 |
---|---|---|
committer | techknowlogick <hello@techknowlogick.com> | 2018-11-23 10:07:08 -0500 |
commit | 49d9900b1fc05147ff109ab232d9cb2a52a8947f (patch) | |
tree | 7035bbe3e9aee9e530f885c6d0d04e2738f1e765 | |
parent | 6467934d29bac79b77e6f8acdc2926aa288bea24 (diff) | |
download | gitea-49d9900b1fc05147ff109ab232d9cb2a52a8947f.tar.gz gitea-49d9900b1fc05147ff109ab232d9cb2a52a8947f.zip |
[website] file rendering through external binaries (#5387)
* #3758: [doc] file rendering through external binaries
* fix subsections markup
* include proposed changes from PR review
-rw-r--r-- | docs/content/doc/advanced/external-renderers.en-us.md | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/docs/content/doc/advanced/external-renderers.en-us.md b/docs/content/doc/advanced/external-renderers.en-us.md new file mode 100644 index 0000000000..52374bc01d --- /dev/null +++ b/docs/content/doc/advanced/external-renderers.en-us.md @@ -0,0 +1,70 @@ +--- +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, +it is just matter of: +* installing external binaries +* add some configuration to your `app.ini` file +* restart your gitea instance + +## 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: + +``` +FROM gitea/gitea:1.6.0 +[...] + +COPY custom/app.ini /data/gitea/conf/app.ini +[...] + +RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng python-dev py-pip python3-dev py3-pip +# 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 +RENDER_COMMAND = "asciidoctor --out-file=- -" +; 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 +``` + +Once your configuration changes have been made, restart Gitea to have changes take effect. |