preserve spaces in text blocks in svg export (#1587)

pull/1589/head
Simonboeuf1 5 years ago committed by GitHub
parent 9ec43d2626
commit ece631b430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -485,6 +485,7 @@ export function renderElementToSvg(
text.setAttribute("font-size", fontSize);
text.setAttribute("fill", element.strokeColor);
text.setAttribute("text-anchor", textAnchor);
text.setAttribute("style", "white-space: pre;");
node.appendChild(text);
}
svgRoot.appendChild(node);

Loading…
Cancel
Save