Files
nuttyreading-html/components/jyf-parser/libs/handler.sjs
@fawn-nine f8e1a3015b 1
2023-03-03 12:11:23 +08:00

21 lines
297 B
JavaScript

var inlineTags = {
abbr: 1,
b: 1,
big: 1,
code: 1,
del: 1,
em: 1,
i: 1,
ins: 1,
label: 1,
q: 1,
small: 1,
span: 1,
strong: 1
}
export default {
useRichText: function(item) {
return !item.c && !inlineTags[item.name] && (item.attrs.style || '').indexOf('display:inline') == -1;
}
}