basic-table.rng.svn-base

来自「XML Copy Editor is free software release」· SVN-BASE 代码 · 共 146 行

SVN-BASE
146
字号
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Basic Tables Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="table">
  <element name="table">
    <ref name="table.attlist"/>
    <optional>
      <ref name="caption"/>
    </optional>
    <oneOrMore>
      <ref name="tr"/>
    </oneOrMore>
  </element>
</define>

<define name="table.attlist">
  <ref name="Common.attrib"/>
  <optional>
    <attribute name="summary">
      <ref name="Text.datatype"/>
    </attribute>
  </optional>
</define>

<define name="caption">
  <element name="caption">
    <ref name="caption.attlist"/>
    <ref name="Inline.model"/>
  </element>
</define>

<define name="caption.attlist">
  <ref name="Common.attrib"/>
</define>

<define name="tr">
  <element name="tr">
    <ref name="tr.attlist"/>
    <oneOrMore>
      <choice>
        <ref name="th"/>
        <ref name="td"/>
      </choice>
    </oneOrMore>
  </element>
</define>

<define name="tr.attlist">
  <ref name="Common.attrib"/>
  <ref name="CellHAlign.attrib"/>
  <ref name="CellVAlign.attrib"/>
</define>

<define name="th">
  <element name="th">
    <ref name="th.attlist"/>
    <ref name="Flow.model"/>
  </element>
</define>

<define name="th.attlist">
  <ref name="Cell.attrib"/>
</define>

<define name="td">
  <element name="td">
    <ref name="td.attlist"/>
    <ref name="Flow.model"/>
  </element>
</define>

<define name="td.attlist">
  <ref name="Cell.attrib"/>
</define>

<define name="Cell.attrib">
  <ref name="Common.attrib"/>
  <optional>
    <attribute name="abbr">
      <ref name="Text.datatype"/>
    </attribute>
  </optional>
  <optional>
    <attribute name="axis"/>
  </optional>
  <optional>
    <attribute name="headers">
      <ref name="IDREFS.datatype"/>
    </attribute>
  </optional>
  <ref name="scope.attrib"/>
  <optional>
    <attribute name="rowspan">
      <ref name="Number.datatype"/>
    </attribute>
  </optional>
  <optional>
    <attribute name="colspan">
      <ref name="Number.datatype"/>
    </attribute>
  </optional>
  <ref name="CellHAlign.attrib"/>
  <ref name="CellVAlign.attrib"/>
</define>

<define name="CellHAlign.attrib">
  <optional>
    <attribute name="align">
      <choice>
	<value>left</value>
	<value>center</value>
	<value>right</value>
      </choice>
    </attribute>
  </optional>
</define>

<define name="CellVAlign.attrib">
  <optional>
    <attribute name="valign">
      <choice>
	<value>top</value>
	<value>middle</value>
	<value>bottom</value>
      </choice>
    </attribute>
  </optional>
</define>

<define name="scope.attrib">
  <optional>
    <attribute name="scope">
      <choice>
	<value>row</value>
	<value>col</value>
      </choice>
    </attribute>
  </optional>
</define>

<define name="Block.class" combine="choice">
  <ref name="table"/>
</define>

</grammar>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?