feat: render markdown in packages' LongDescription
1 file changed, 5 insertions(+), 1 deletion(-)
changed files
M frontend/templates/blocks/packages.gotmpl → frontend/templates/blocks/packages.gotmpl
@@ -11,7 +11,11 @@ {{ .Attribute }} {{- end }} </h3> </summary> - <p>{{ or .LongDescription .Description }}</p> + {{- if .LongDescription }} + {{ markdown .LongDescription }} + {{- else }} + <p>{{ .Description }}</p> + {{- end }} <dl> {{- with .MainProgram }} <dt>Main Program</dt>