dart-lang / pub-dev

The pub.dev website
https://pub.dev
BSD 3-Clause "New" or "Revised" License
796 stars 146 forks source link

Modernize github-lookalike markdown rendering #8323

Open isoos opened 5 days ago

isoos commented 5 days ago

Our github-markdown.css is outdated in many aspect (e.g. dark mode compatibility, how some blocks are rendered - specifically the blockquote mentioned in #8310), and we should update it.

The most comprehensive and up-to-date CSS file(s) seems to be in https://github.com/sindresorhus/github-markdown-css - but we may not need all of the rules from those files. It is generated by fetching the styles from GitHub, parses them and extracts the relevant rules.

We could use them on a case-by-case basis, or also create a similar extraction logic for the styles or specific rules that are relevant to us (e.g. we don't want to use font-family rules where they are not applicable).

isoos commented 5 days ago

/cc @parlough