This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!--Primeiro você usa a tag object (e não o img) --> | |
| <object data="assets/svg/armor.svg" type="image/svg+xml" onload="extract($(this));" id="elema"></object> | |
| <script type="text/javascript"> | |
| //Depois você extrai o fonte | |
| function extract(obj) { | |
| myid = obj.attr('id'); | |
| var svg = document.getElementById(myid); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # correctBibUrl <library.bib> <outputLibrary.bib> | |
| cat "$1" | sed -e '/^url/s/[\\]//g' > "$2" |
NewerOlder