mirror of
https://github.com/imfing/hextra.git
synced 2025-05-15 16:38:25 -04:00

* chore(css): improve not-prose tags styling * fix: typo * chore(style): improve appearance in prose * feat: support icon in callout shortcode * chore: add RSS badge to blog list page * chore: run build:css * chore: run build:css * chore: remove unused CSS * chore: add footer.enable explicitly to config * chore: use `where` pseudo class for more prose elements * chore: run build:css * chore: remove blank space * chore: rebuild css * chore: update figure css
10 lines
198 B
HTML
10 lines
198 B
HTML
{{- $style := .Get "style" -}}
|
|
|
|
|
|
<p
|
|
class="not-prose text-xl text-gray-600 dark:text-gray-400 sm:text-xl"
|
|
{{ with $style }}style="{{ . | safeCSS }}"{{ end }}
|
|
>
|
|
{{ .Inner | markdownify }}
|
|
</p>
|