Files
gitea-rest-renderer/Dockerfile
gryf 1e88e10c78 Added ability for syntax highlight in code blocks.
Docutils can leverage pygments python package to create syntax highlight
inside code blocks. Implementation consists two custom classes for
getting HTML code tag contain appropriate class keyword and value.
2022-07-06 16:52:51 +02:00

5 lines
151 B
Docker

FROM gitea/gitea:latest
COPY ./rst2htmlbody.py /bin/rst2htmlbody
RUN apk --no-cache add py3-docutils py3-pygments && \
chmod 755 /bin/rst2htmlbody