Skip to content

Commit 0084cff

Browse files
committed
Underline and highlight keywords for printer files
1 parent 45caee1 commit 0084cff

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/render.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,12 @@ module.exports = class Render {
529529
}
530530
}
531531
break;
532+
case `UNDERLINE`:
533+
css += `text-decoration: underline;`;
534+
break;
535+
case `HIGHLIGHT`:
536+
css += `font-weight: 900;`;
537+
break;
532538
case `DSPATR`:
533539
keyword.value.split(` `).forEach(value => {
534540
switch (value) {

0 commit comments

Comments
 (0)