Remix.run Logo
kmoser 4 days ago

There are annoying edge cases where formatting does matter, such as whitespace around HTML text nodes, e.g.:

  <span>foo</span>
vs:

  <span>
    foo
  </span>
grumbelbart2 4 days ago | parent [-]

Sure, but the same goes for verbatim strings, or leading whitespaces in python. "Code formatting" questions usually only concern themself with those degrees of freedom that do not alter the semantic meaning of the code.

kmoser 3 days ago | parent [-]

Agreed, but my experience is that many formatters will try to "help" by formatting non-code, thereby breaking something.