The current HTML that is inlined is quite verbose, with a lot of noise that's beyond what's necessary to display the content. I don't know if this is due to the usage of Tailwind but code like <div class_="w-full flex flex-col sm:flex-row justify-between items-center gap-7 sm:gap-0"> mixes way more presentation logic into the HTML than it should.
Maybe some of it needs to be moved to CSS, maybe the need for this is Tailwind but this presents a bit of a maintenance issue as it requires additional work to make things look correct. In #202 this comment mentions that the paragraphs don't look good #202 (comment) but the HTML is in a messy state so it is harder to fix than would be necessary.
The current HTML that is inlined is quite verbose, with a lot of noise that's beyond what's necessary to display the content. I don't know if this is due to the usage of Tailwind but code like
<div class_="w-full flex flex-col sm:flex-row justify-between items-center gap-7 sm:gap-0">mixes way more presentation logic into the HTML than it should.Maybe some of it needs to be moved to CSS, maybe the need for this is Tailwind but this presents a bit of a maintenance issue as it requires additional work to make things look correct. In #202 this comment mentions that the paragraphs don't look good #202 (comment) but the HTML is in a messy state so it is harder to fix than would be necessary.