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.
1 parent f159fa2 commit 44925e2Copy full SHA for 44925e2
src/helper/xml-slide-helper.ts
@@ -233,7 +233,7 @@ export class XmlSlideHelper {
233
const rPr = run.getElementsByTagName('a:rPr')[0];
234
if (rPr) {
235
const isBold = rPr.getAttribute('b') === '1';
236
- const isUnderlined = rPr.getAttribute('u') === '1';
+ const isUnderlined = rPr.getAttribute('u');
237
const isItalic = rPr.getAttribute('i') === '1';
238
const fontSize = parseInt(rPr.getAttribute('sz') || '0') / 100; // Convert to points
239
0 commit comments