如题。 目前,可以通过如下方法实现,但感觉不太好: ``` customHandler: { start: (node: NodeInfo) => { }, end: (node: NodeInfo) => { if (node.tag === 'a' && node.artUIStyleObject) { node.artUIStyleObject.fontColor = Color.red; node.artUIStyleObject.decoration = { type: 0, } } }, chars: null, } ```