pick lints
This commit is contained in:
@@ -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 += '] ';
|
||||||
|
|||||||
Reference in New Issue
Block a user