about summary refs log tree commit diff stats
path: root/frontend
diff options
context:
space:
mode:
authorAlan Pearce2024-05-17 23:01:17 +0200
committerAlan Pearce2024-05-17 23:01:17 +0200
commit934a0693213df901078cd1bc75a5b7e1b5c87555 (patch)
treeea780ee749b74f966ca1c6c5204bcd9cfd1e805e /frontend
parent698881aa577d2c209f162db9263fab17ced3643f (diff)
downloadsearchix-934a0693213df901078cd1bc75a5b7e1b5c87555.tar.lz
searchix-934a0693213df901078cd1bc75a5b7e1b5c87555.tar.zst
searchix-934a0693213df901078cd1bc75a5b7e1b5c87555.zip
feat: render markdown in packages' LongDescription
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>