XML 是否正式支持 "dir" 或 "xml:dir" 属性?
Does XML officially support a "dir" or "xml:dir" attribute?
你可以找到各种文件说要指定XML文件内容的语言,使用xml:lang
,像这样:
<foobar xml:lang="en">...</foobar>
HTML 和 XHTML 具有 dir
属性,可让您指定文本在默认情况下应被视为从左到右,或从右到左默认值:
<html dir="rtl">...</html>
是否有 XML 的等效属性?在每个文本节点中包含 Unicode RIGHT-TO-LEFT 标记的唯一解决方案是什么?
你用 xml:lang
提到的 W3C XML Recommendation itself does not address directionality (although it does address language identification。
然而,在 W3C Best Practices for XML Internationalization, see Best Practice 2: Defining markup to specify text direction for how to use the its:dir
attribute and its:dirRule
element to specify directional markup via the Internationalization Tag Set.
你可以找到各种文件说要指定XML文件内容的语言,使用xml:lang
,像这样:
<foobar xml:lang="en">...</foobar>
HTML 和 XHTML 具有 dir
属性,可让您指定文本在默认情况下应被视为从左到右,或从右到左默认值:
<html dir="rtl">...</html>
是否有 XML 的等效属性?在每个文本节点中包含 Unicode RIGHT-TO-LEFT 标记的唯一解决方案是什么?
你用 xml:lang
提到的 W3C XML Recommendation itself does not address directionality (although it does address language identification。
然而,在 W3C Best Practices for XML Internationalization, see Best Practice 2: Defining markup to specify text direction for how to use the its:dir
attribute and its:dirRule
element to specify directional markup via the Internationalization Tag Set.