Platane / snk

🟩⬜ Generates a snake game from a github user contributions graph and output a screen capture as animated svg or gif
https://platane.github.io/snk
4.22k stars 1.03k forks source link

📓 remove inconsistent whitespace #73

Closed tempewda closed 1 year ago

tempewda commented 1 year ago

this PR fixes #72

the cause seems to be the whitespaces between the inverted commas and the URL in srcset attribute of picture element, so i removed them

<picture>
  <source
    media="(prefers-color-scheme: dark)"
    srcset="
      https://raw.githubusercontent.com/platane/snk/output/github-contribution-grid-snake-dark.svg
    "
  />
  <source
    media="(prefers-color-scheme: light)"
    srcset="
      https://raw.githubusercontent.com/platane/snk/output/github-contribution-grid-snake.svg
    "
  />
Platane commented 1 year ago

oh indeed thanks !