Skip to content

Commit

Permalink
Drop version attribute from SVG code examples
Browse files Browse the repository at this point in the history
A SVG code example of spec does not have `version` attribute. So, drop
it for simplicity.

This resolves hail2u#34
  • Loading branch information
hail2u committed Aug 31, 2016
1 parent 1d47dd3 commit 89a4de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,13 @@ SVG and MathML can be used directly in an HTML5 document.

Bad:

<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<svg xmlns="http://www.w3.org/2000/svg">
...
</svg>

Good:

<svg version="1.1">
<svg>
...
</svg>

Expand Down

0 comments on commit 89a4de9

Please sign in to comment.