aboutsummaryrefslogtreecommitdiff
path: root/templates/gititemcommit.qtpl
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2025-02-08 22:26:39 +0100
committerGabriel A. Giovanini <mail@gabrielgio.me>2025-02-08 22:26:39 +0100
commit154f68bfd9ab4660dc764dbed6190289082b5c94 (patch)
tree0eded5dc3e540ebb930b6b2cdc7ad898303783f2 /templates/gititemcommit.qtpl
parente251d0d2d40fa6cc583954be7ca00cf60f5d15e9 (diff)
downloadcerrado-154f68bfd9ab4660dc764dbed6190289082b5c94.tar.gz
cerrado-154f68bfd9ab4660dc764dbed6190289082b5c94.tar.bz2
cerrado-154f68bfd9ab4660dc764dbed6190289082b5c94.zip
feat: Add syntax highlight to diff
Diffstat (limited to 'templates/gititemcommit.qtpl')
-rw-r--r--templates/gititemcommit.qtpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/gititemcommit.qtpl b/templates/gititemcommit.qtpl
index d223315..ec67757 100644
--- a/templates/gititemcommit.qtpl
+++ b/templates/gititemcommit.qtpl
@@ -3,7 +3,7 @@
{% code
type GitItemCommitPage struct {
Commit *object.Commit
- Diff string
+ Diff []byte
}
%}
@@ -14,6 +14,6 @@ type GitItemCommitPage struct {
{%= Commit(name, g.Commit, true) %}
</div>
<div class="code-view">
-<pre>{%s g.Diff %}</pre>
+<pre>{%z= g.Diff %}</pre>
</div>
{% endfunc %}