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.
This commit is contained in:
2022-07-06 16:51:13 +02:00
parent 3861302048
commit 1e88e10c78
2 changed files with 24 additions and 3 deletions

View File

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