mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-30 10:46:55 +00:00
pick lints
This commit is contained in:
parent
01a5300be8
commit
68adb6c05d
1 changed files with 5 additions and 5 deletions
|
@ -230,7 +230,7 @@ export class MfmService {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'rp': break
|
case 'rp': break;
|
||||||
case 'rt': {
|
case 'rt': {
|
||||||
appendChildren(node.childNodes);
|
appendChildren(node.childNodes);
|
||||||
break;
|
break;
|
||||||
|
@ -273,10 +273,10 @@ export class MfmService {
|
||||||
if (!treeAdapter.isElementNode(child)) {
|
if (!treeAdapter.isElementNode(child)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (child.nodeName == 'rp') {
|
if (child.nodeName === 'rp') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (child.nodeName == 'rt') {
|
if (child.nodeName === 'rt') {
|
||||||
text += '$[ruby $[group ';
|
text += '$[ruby $[group ';
|
||||||
appendChildren(nonRtNodes);
|
appendChildren(nonRtNodes);
|
||||||
text += '] ';
|
text += '] ';
|
||||||
|
|
Loading…
Add table
Reference in a new issue