vigetlabs / blendid

A delicious blend of gulp tasks combined into a configurable asset pipeline and static site builder
MIT License
4.97k stars 682 forks source link

xlink:href being deprecated in SVG #563

Open olaassem opened 6 years ago

olaassem commented 6 years ago

MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/xlink:href

This is old

<svg>
  <use xlink:href="#xyz" />
</svg>

This is new

<svg>
  <use href="#xyz" />
</svg>