param.rng

来自「XML Copy Editor is free software release」· RNG 代码 · 共 33 行

RNG
33
字号
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Param Module -->
<grammar xmlns="http://relaxng.org/ns/structure/1.0">

<define name="param">
  <element name="param">
    <ref name="param.attlist"/>
  </element>
</define>

<define name="param.attlist">
  <ref name="id.attrib"/>
  <attribute name="name"/>
  <optional>
    <attribute name="value"/>
  </optional>
  <optional>
    <attribute name="valuetype">
      <choice>
	<value>data</value>
	<value>ref</value>
	<value>object</value>
      </choice>
    </attribute>
  </optional>
  <optional>
    <attribute name="type">
      <ref name="ContentType.datatype"/>
    </attribute>
  </optional>
</define>

</grammar>

⌨️ 快捷键说明

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