版博士V2.0程序
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

1234567891011
  1. 'use strict';
  2. function iconToHTML(body, attributes) {
  3. let renderAttribsHTML = body.indexOf("xlink:") === -1 ? "" : ' xmlns:xlink="http://www.w3.org/1999/xlink"';
  4. for (const attr in attributes) {
  5. renderAttribsHTML += " " + attr + '="' + attributes[attr] + '"';
  6. }
  7. return '<svg xmlns="http://www.w3.org/2000/svg"' + renderAttribsHTML + ">" + body + "</svg>";
  8. }
  9. exports.iconToHTML = iconToHTML;