Format files (#13698)

* align "make help"

* format

* untouch build/generate-svg.js

* untouch .eslintrc

* combine editorconfig's

* rm editorconfig

Co-authored-by: Lauris BH <[email protected]>
Co-authored-by: techknowlogick <[email protected]>
This commit is contained in:
6543
2020-11-28 01:12:22 -05:00
committed by GitHub
co-authored by Lauris BH techknowlogick
parent 4f9f8a3747
commit a3b10dd83e
30 changed files with 54 additions and 62 deletions
+3 -3
View File
@@ -15,7 +15,7 @@ menu:
# Custom files rendering configuration
Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries,
Gitea supports custom file renderings (i.e., Jupyter notebooks, asciidoc, etc.) through external binaries,
it is just a matter of:
* installing external binaries
@@ -26,7 +26,7 @@ This supports rendering of whole files. If you want to render code blocks in mar
## Installing external binaries
In order to get file rendering through external binaries, their associated packages must be installed.
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:
```
@@ -41,7 +41,7 @@ RUN apk --no-cache add asciidoctor freetype freetype-dev gcc g++ libpng libffi-d
RUN pip3 install --upgrade pip
RUN pip3 install -U setuptools
RUN pip3 install jupyter docutils
RUN pip3 install jupyter docutils
# add above any other python package you may need to install
```