Using an HTML entity in XSLT (e.g.  )

前端 未结 11 2087
无人及你
无人及你 2020-11-28 07:29

What is the best way to include an html entity in XSLT?


    
    &am         


        
11条回答
  •  温柔的废话
    2020-11-28 08:05

    this one returns a XsltParseError

    Yes, and the reason for that is that   is not a predefined entity in XML or XSLT as it is in HTML.

    You could just use the unicode character which   stands for:  

提交回复
热议问题