我有以下XML代码,并希望在text-attribute中使用HTML。
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<formLayout xmlns="xxx" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="xxx">
<extension id="form_description_notes" label="Description notes" text="HERE HTML"/>
</formLayout>
我可以这样做:
<br /> Use this link for further information: <a href='http://www.google.de'>Google</a>
但这非常不舒服。
对此有什么想法?
答案 0 :(得分:0)
使用像这样的字符引用是在XML中的属性值中包含特殊字符的唯一方法。
如果您使用子节点而不是属性,则可以使用CDATA块或仅从XHTML命名空间导入元素。