not my website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[feat] Improve paragraph readability

+4 -1
+4 -1
src/website/md.gleam
··· 41 41 html.pre([], [html.code([], [element.text(contents)])]) 42 42 ast.HtmlBlock(html:) -> html.html([], [element.text(html)]) 43 43 ast.Paragraph(contents:) -> 44 - html.p([], contents |> list.map(render_inline_node)) 44 + html.p( 45 + [attribute.class("my-2.5")], 46 + contents |> list.map(render_inline_node), 47 + ) 45 48 ast.BlockQuote(contents:) -> 46 49 html.blockquote([], contents |> list.map(render_block_node)) 47 50 ast.AlertBlock(level:, contents:) -> {