We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80b3835 commit 4775eefCopy full SHA for 4775eef
1 file changed
.github/workflows/static.yml
@@ -37,7 +37,13 @@ jobs:
37
run: |
38
sudo apt-get update
39
sudo apt-get install -y pandoc
40
- pandoc README.md -s -o index.html --metadata title="Hytale Server Docker"
+ pandoc README.md -s -o index.html --metadata title="Hytale Server Docker" \
41
+ --include-in-header=<(cat <<'EOF'
42
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/github.min.css">
43
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
44
+ <script>document.addEventListener('DOMContentLoaded', () => hljs.highlightAll());</script>
45
+ EOF
46
+ )
47
- name: Upload artifact
48
uses: actions/upload-pages-artifact@v3
49
with:
0 commit comments