annotate etc/schema/xhtml-link.rnc @ 92994:deb2f6126df1
(diary-remind-message, mark-sexp-diary-entries, list-sexp-diary-entries)
(diary-font-lock-sexps): Use format rather than concat.
(diary): Remove un-needed let.
(view-other-diary-entries): Rename argument.
(diary-list-entries-2): New function.
(diary-list-entries-1, diary-list-entries): Use diary-list-entries-2.
(print-diary-entries): Use unless.
(diary-mark-entries-1): Change argument order, make all but
markfunc optional. Handle the standard (Gregorian) case. Use
match-string-no-properties. Handle marks.
(mark-diary-entries): Use diary-mark-entries-1.
(calendar-mark-complex, calendar-mark-1): New functions.
(diary-font-lock-keywords-1): New macro.
(diary-font-lock-keywords): Use diary-font-lock-keywords-1.
author |
Glenn Morris <rgm@gnu.org> |
date |
Sun, 16 Mar 2008 01:26:48 +0000 |
parents |
38f93f3d00a2 |
children |
|
rev |
line source |
86361
|
1 # Link Module
|
|
2
|
|
3 link = element link { link.attlist }
|
|
4 link.attlist =
|
|
5 Common.attrib,
|
|
6 attribute charset { Charset.datatype }?,
|
|
7 attribute href { URI.datatype }?,
|
|
8 attribute hreflang { LanguageCode.datatype }?,
|
|
9 attribute type { ContentType.datatype }?,
|
|
10 attribute rel { LinkTypes.datatype }?,
|
|
11 attribute rev { LinkTypes.datatype }?,
|
|
12 attribute media { MediaDesc.datatype }?
|
|
13 head.content &= link*
|