We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c14e5ef + c9fbbce commit 112fe7fCopy full SHA for 112fe7f
src/library/processInlineTag.js
@@ -24,7 +24,7 @@ export default function processInlineTag(
24
const color = htmlElement.style.color;
25
const backgroundColor = htmlElement.style.backgroundColor;
26
const fontSize = htmlElement.style.fontSize;
27
- const fontFamily = htmlElement.style.fontFamily;
+ const fontFamily = htmlElement.style.fontFamily.replace(/^"|"$/g, '');
28
if (color) {
29
style.add(`color-${color.replace(/ /g, '')}`);
30
}
0 commit comments