view etc/schema/xhtml-attribs.rnc @ 93002:d876f5372472

EasyPG: Fix bug with C-x C-s after M-x epa-file-select-keys.
author Michael Olson <mwolson@gnu.org>
date Sun, 16 Mar 2008 04:04:15 +0000
parents 38f93f3d00a2
children
line wrap: on
line source

# Common Attributes Module

id.attrib = attribute id { ID.datatype }?
class.attrib = attribute class { NMTOKENS.datatype }?
title.attrib = attribute title { Text.datatype }?
Core.attrib = id.attrib, class.attrib, title.attrib
lang.attrib = attribute xml:lang { LanguageCode.datatype }?
I18n.attrib = lang.attrib
Common.attrib = Core.attrib, I18n.attrib
CommonIdRequired.attrib =
  attribute id { ID.datatype },
  class.attrib,
  title.attrib,
  I18n.attrib