summaryrefslogtreecommitdiff
path: root/etc/schema/xhtml-link.rnc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/schema/xhtml-link.rnc')
-rw-r--r--etc/schema/xhtml-link.rnc13
1 files changed, 13 insertions, 0 deletions
diff --git a/etc/schema/xhtml-link.rnc b/etc/schema/xhtml-link.rnc
new file mode 100644
index 00000000000..9d0d6f1cc75
--- /dev/null
+++ b/etc/schema/xhtml-link.rnc
@@ -0,0 +1,13 @@
+# Link Module
+
+link = element link { link.attlist }
+link.attlist =
+ Common.attrib,
+ attribute charset { Charset.datatype }?,
+ attribute href { URI.datatype }?,
+ attribute hreflang { LanguageCode.datatype }?,
+ attribute type { ContentType.datatype }?,
+ attribute rel { LinkTypes.datatype }?,
+ attribute rev { LinkTypes.datatype }?,
+ attribute media { MediaDesc.datatype }?
+head.content &= link*