about summary refs log tree commit diff stats
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/static/style.css4
-rw-r--r--frontend/templates/blocks/packages.gotmpl6
2 files changed, 9 insertions, 1 deletions
diff --git a/frontend/static/style.css b/frontend/static/style.css
index c8d8cf6..ff4cc6e 100644
--- a/frontend/static/style.css
+++ b/frontend/static/style.css
@@ -125,3 +125,7 @@ h3 {
   font-size: 1.25rem;
   display: inline-block;
 }
+
+blockquote > p {
+  margin: unset;
+}
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>