Flutter-Bounty-Hunters / static_shock

A static site generator for Dart.
MIT License
58 stars 5 forks source link

Markdown block quotes are not formatted #119

Open suragch opened 1 month ago

suragch commented 1 month ago

I write the following in Markdown:

This is normal text.

> This is a quote.

And this is what SS generates:

Screenshot 2024-05-15 at 19 39 44

I would have expected the block quote text to be italic or something.

matthew-carroll commented 1 month ago

Is the HTML in the final content correct? I.e., is this an issue with converting Markdown to HTML, or an issue with the default CSS styles that are shipped with the standard template?

suragch commented 1 month ago

Ah, got it. The HTML is correct. I just needed to add my own CSS style for blockquote.

In order to be as unsurprising as possible to new users, I would recommend adding a minimal style to the default template, and then provide documentation for how to change that style.