diff options
Diffstat (limited to 'frontend/templates')
-rw-r--r-- | frontend/templates/blocks/packages.gotmpl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/templates/blocks/packages.gotmpl b/frontend/templates/blocks/packages.gotmpl index b6e4584..90ba0b2 100644 --- a/frontend/templates/blocks/packages.gotmpl +++ b/frontend/templates/blocks/packages.gotmpl @@ -11,7 +11,11 @@ {{- end }} </h3> </summary> - <p>{{ or .LongDescription .Description }}</p> + {{- if .LongDescription }} + {{ markdown .LongDescription }} + {{- else }} + <p>{{ .Description }}</p> + {{- end }} <dl> {{- with .MainProgram }} <dt>Main Program</dt> |