mg2en 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,295 @@
1
+ <!--
2
+
3
+ Evernote Note Export Format, 3.0 DTD
4
+
5
+ Copyright 2008-2013 Evernote Corporation
6
+
7
+ This DTD defines the legal structure of Evernote export format. This
8
+ defines the permitted placement of each data element, but it does not
9
+ directly enforce validation of the content of each field.
10
+
11
+ The semantics of each element in the export format is defined in the
12
+ "Types.thrift" interface specification document for the EDAM API.
13
+ The permitted value for each field is also defined in the "Limits.thrift"
14
+ interface specification, which includes permitted lengths and expressions.
15
+
16
+ All date/time values must be encoded using a specific fixed-length profile
17
+ of ISO 8601, with times translated to UTC/Zulu:
18
+ yyyymmddThhmmssZ
19
+ For example, 5:42:09 PM GMT on January 20th, 2007 would be encoded as:
20
+ 20070120T174209Z
21
+
22
+ Please see the comments in this DTD file to indicate the expected format
23
+ of each data element.
24
+
25
+ This DTD module is identified by the PUBLIC and SYSTEM identifiers:
26
+
27
+ PUBLIC "en-export"
28
+ SYSTEM "http://xml.evernote.com/pub/evernote-export3.dtd"
29
+
30
+ -->
31
+
32
+ <!-- one or more digits separated by periods-->
33
+ <!ENTITY % Version "CDATA">
34
+
35
+ <!-- date and time information. ISO 8601 date format -->
36
+ <!ENTITY % Datetime "CDATA">
37
+
38
+
39
+ <!-- Top-level element, contains a list of one or more notes -->
40
+ <!ELEMENT en-export (note)+>
41
+ <!ATTLIST en-export
42
+ export-date %Datetime; #IMPLIED
43
+ application CDATA #IMPLIED
44
+ version %Version; #IMPLIED
45
+ >
46
+
47
+
48
+ <!-- Corresponds to EDAM Note type -->
49
+ <!ELEMENT note
50
+ (title, content, created?, updated?, tag*,
51
+ note-attributes?, resource*)
52
+ >
53
+
54
+ <!--
55
+ Corresponds to Note.title field.
56
+ May not begin or end with whitespace, may not contain line endings or
57
+ Unicode control characters. Must be between 1 and 255 characters.
58
+ -->
59
+ <!ELEMENT title (#PCDATA)>
60
+
61
+ <!--
62
+ Corresponds to Note.content field.
63
+ May not be longer than 5242880 Unicode characters.
64
+ The contents of this character block must be a valid ENML document, which
65
+ must be validated against the ENML DTD upon import:
66
+ http://xml.evernote.com/pub/enml.dtd
67
+ -->
68
+ <!ELEMENT content (#PCDATA)>
69
+
70
+ <!--
71
+ Corresponds to the Note.created field.
72
+ Must contain a valid date and time, if present.
73
+ -->
74
+ <!ELEMENT created (#PCDATA)>
75
+
76
+ <!--
77
+ Corresponds to the Note.updated field.
78
+ Must contain a valid date and time, if present.
79
+ -->
80
+ <!ELEMENT updated (#PCDATA)>
81
+
82
+ <!--
83
+ Corresponds to the Tag.name field for one of the tags on the note.
84
+ May not begin or end with whitespace, may not contain line endings, commas
85
+ or Unicode control characters. Must be between 1 and 100 characters.
86
+ -->
87
+ <!ELEMENT tag (#PCDATA)>
88
+
89
+ <!--
90
+ Corresponds to the Note.attributes field, and NoteAttributes type.
91
+ -->
92
+ <!ELEMENT note-attributes
93
+ (subject-date?, latitude?, longitude?, altitude?, author?, source?,
94
+ source-url?, source-application?, reminder-order?, reminder-time?,
95
+ reminder-done-time?, place-name?, content-class?, application-data*)
96
+ >
97
+
98
+ <!--
99
+ Corresponds to the EDAM Resource type.
100
+ -->
101
+ <!ELEMENT resource
102
+ (data, mime, width?, height?, duration?, recognition?, resource-attributes?,
103
+ alternate-data?)
104
+ >
105
+
106
+ <!--
107
+ Corresponds to the Resource.data field.
108
+ The binary body of the resource must be encoded into Base-64 format. The
109
+ encoding may contain whitespace (e.g. to break into lines), or may be
110
+ continuous without break. Total length of the original binary body may not
111
+ exceed 25MB.
112
+ -->
113
+ <!ELEMENT data (#PCDATA)>
114
+ <!ATTLIST data encoding NMTOKEN "base64">
115
+
116
+ <!--
117
+ Corresponds to the Resource.mime field.
118
+ Must contain one of the permitted MIME types:
119
+ image/gif
120
+ image/jpeg
121
+ image/png
122
+ audio/wav
123
+ audio/mpeg
124
+ application/pdf
125
+ application/vnd.evernote.ink
126
+ -->
127
+ <!ELEMENT mime (#PCDATA)>
128
+
129
+ <!--
130
+ Corresponds to the Resource.width field.
131
+ If present, it must contain a positive integer.
132
+ -->
133
+ <!ELEMENT width (#PCDATA)>
134
+
135
+ <!--
136
+ Corresponds to the Resource.height field.
137
+ If present, it must contain a positive integer.
138
+ -->
139
+ <!ELEMENT height (#PCDATA)>
140
+
141
+ <!--
142
+ Corresponds to the Resource.duration field.
143
+ If present, it must contain a positive integer.
144
+ -->
145
+ <!ELEMENT duration (#PCDATA)>
146
+
147
+ <!--
148
+ Corresponds to the Resource.recognition field.
149
+ If present, it must contain a valid recoIndex document, and it may be
150
+ validated against the recoIndex DTD:
151
+ http://xml.evernote.com/pub/recoIndex.dtd
152
+ -->
153
+ <!ELEMENT recognition (#PCDATA)>
154
+
155
+ <!--
156
+ Corresponds to the Resource.alternateData field.
157
+ The binary body of the resource's alternate representation must be encoded
158
+ into Base-64 format. The encoding may contain whitespace (e.g. to break into
159
+ lines), or may be continuous without break.
160
+ -->
161
+ <!ELEMENT alternate-data (#PCDATA)>
162
+ <!ATTLIST alternate-data encoding NMTOKEN "base64">
163
+
164
+ <!--
165
+ Corresponds to the Resource.attributes field, and ResourceAttributes type.
166
+ -->
167
+ <!ELEMENT resource-attributes
168
+ (source-url?, timestamp?, latitude?, longitude?, altitude?, camera-make?,
169
+ camera-model?, reco-type?, file-name?, attachment?, application-data*)
170
+ >
171
+
172
+ <!--
173
+ Corresponds to the NoteAttributes.subjectDate field.
174
+ Must contain a valid date and time, if present.
175
+ -->
176
+ <!ELEMENT subject-date (#PCDATA)>
177
+
178
+ <!--
179
+ Corresponds to the NoteAttributes.latitude or
180
+ ResourceAttributes.latitude field.
181
+ Must be encoded as a single decimal number.
182
+ -->
183
+ <!ELEMENT latitude (#PCDATA)>
184
+
185
+ <!--
186
+ Corresponds to the NoteAttributes.longitude or
187
+ ResourceAttributes.longitude field.
188
+ Must be encoded as a single decimal number.
189
+ -->
190
+ <!ELEMENT longitude (#PCDATA)>
191
+
192
+ <!--
193
+ Corresponds to the NoteAttributes.altitude or
194
+ ResourceAttributes.altitude field.
195
+ Must be encoded as a single decimal number.
196
+ -->
197
+ <!ELEMENT altitude (#PCDATA)>
198
+
199
+ <!--
200
+ Corresponds to the NoteAttributes.author field.
201
+ Must be between 1 and 4096 characters.
202
+ -->
203
+ <!ELEMENT author (#PCDATA)>
204
+
205
+ <!--
206
+ Corresponds to the NoteAttributes.source field.
207
+ Must be between 1 and 4096 characters.
208
+ -->
209
+ <!ELEMENT source (#PCDATA)>
210
+
211
+ <!--
212
+ Corresponds to the NoteAttributes.sourceURL or
213
+ ResourceAttributes.sourceURL field.
214
+ Must be between 1 and 4096 characters, and must contain a valid Internet
215
+ URL (e.g. starting with "http" or "https".)
216
+ -->
217
+ <!ELEMENT source-url (#PCDATA)>
218
+
219
+ <!--
220
+ Corresponds to the NoteAttributes.sourceApplication field.
221
+ Must be between 1 and 4096 characters.
222
+ -->
223
+ <!ELEMENT source-application (#PCDATA)>
224
+
225
+ <!--
226
+ Corresponds to the NoteAttributes.reminderOrder field.
227
+ If present, it must contain a positive integer.
228
+ -->
229
+ <!ELEMENT reminder-order (#PCDATA)>
230
+
231
+ <!--
232
+ Corresponds to the NoteAttributes.reminderTime field.
233
+ Should be a date.
234
+ -->
235
+ <!ELEMENT reminder-time (#PCDATA)>
236
+
237
+ <!--
238
+ Corresponds to the NoteAttributes.reminderDoneTime field.
239
+ Should be a date.
240
+ -->
241
+ <!ELEMENT reminder-done-time (#PCDATA)>
242
+
243
+ <!--
244
+ Corresponds to the NoteAttributes.placeName field.
245
+ -->
246
+ <!ELEMENT place-name (#PCDATA)>
247
+
248
+ <!--
249
+ Corresponds to the NoteAttributes.contentClass field.
250
+ -->
251
+ <!ELEMENT content-class (#PCDATA)>
252
+
253
+ <!--
254
+ Corresponds to the Lazy Map of ApplicationData field.
255
+ -->
256
+ <!ELEMENT application-data (#PCDATA)>
257
+ <!ATTLIST application-data
258
+ key CDATA #REQUIRED
259
+ >
260
+
261
+ <!--
262
+ Corresponds to the ResourceAttributes.timestamp field.
263
+ Must contain a valid date and time, if present.
264
+ -->
265
+ <!ELEMENT timestamp (#PCDATA)>
266
+
267
+ <!--
268
+ Corresponds to the ResourceAttributes.cameraMake field.
269
+ Must be between 1 and 4096 characters.
270
+ -->
271
+ <!ELEMENT camera-make (#PCDATA)>
272
+
273
+ <!--
274
+ Corresponds to the ResourceAttributes.cameraModel field.
275
+ Must be between 1 and 4096 characters.
276
+ -->
277
+ <!ELEMENT camera-model (#PCDATA)>
278
+
279
+ <!--
280
+ Corresponds to the ResourceAttributes.recoType field.
281
+ Must be between 1 and 4096 characters.
282
+ -->
283
+ <!ELEMENT reco-type (#PCDATA)>
284
+
285
+ <!--
286
+ Corresponds to the ResourceAttributes.fileName field.
287
+ Must be between 1 and 4096 characters.
288
+ -->
289
+ <!ELEMENT file-name (#PCDATA)>
290
+
291
+ <!--
292
+ Corresponds to the ResourceAttributes.attachment field.
293
+ Should be 'true' or 'false'.
294
+ -->
295
+ <!ELEMENT attachment (#PCDATA)>
@@ -0,0 +1,196 @@
1
+ <!-- Portions (C) International Organization for Standardization 1986
2
+ Permission to copy in any form is granted for use with
3
+ conforming SGML systems and applications as defined in
4
+ ISO 8879, provided this notice is included in all copies.
5
+ -->
6
+ <!-- Character entity set. Typical invocation:
7
+ <!ENTITY % HTMLlat1 PUBLIC
8
+ "-//W3C//ENTITIES Latin 1 for XHTML//EN"
9
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent">
10
+ %HTMLlat1;
11
+ -->
12
+
13
+ <!ENTITY nbsp "&#160;"> <!-- no-break space = non-breaking space,
14
+ U+00A0 ISOnum -->
15
+ <!ENTITY iexcl "&#161;"> <!-- inverted exclamation mark, U+00A1 ISOnum -->
16
+ <!ENTITY cent "&#162;"> <!-- cent sign, U+00A2 ISOnum -->
17
+ <!ENTITY pound "&#163;"> <!-- pound sign, U+00A3 ISOnum -->
18
+ <!ENTITY curren "&#164;"> <!-- currency sign, U+00A4 ISOnum -->
19
+ <!ENTITY yen "&#165;"> <!-- yen sign = yuan sign, U+00A5 ISOnum -->
20
+ <!ENTITY brvbar "&#166;"> <!-- broken bar = broken vertical bar,
21
+ U+00A6 ISOnum -->
22
+ <!ENTITY sect "&#167;"> <!-- section sign, U+00A7 ISOnum -->
23
+ <!ENTITY uml "&#168;"> <!-- diaeresis = spacing diaeresis,
24
+ U+00A8 ISOdia -->
25
+ <!ENTITY copy "&#169;"> <!-- copyright sign, U+00A9 ISOnum -->
26
+ <!ENTITY ordf "&#170;"> <!-- feminine ordinal indicator, U+00AA ISOnum -->
27
+ <!ENTITY laquo "&#171;"> <!-- left-pointing double angle quotation mark
28
+ = left pointing guillemet, U+00AB ISOnum -->
29
+ <!ENTITY not "&#172;"> <!-- not sign = angled dash,
30
+ U+00AC ISOnum -->
31
+ <!ENTITY shy "&#173;"> <!-- soft hyphen = discretionary hyphen,
32
+ U+00AD ISOnum -->
33
+ <!ENTITY reg "&#174;"> <!-- registered sign = registered trade mark sign,
34
+ U+00AE ISOnum -->
35
+ <!ENTITY macr "&#175;"> <!-- macron = spacing macron = overline
36
+ = APL overbar, U+00AF ISOdia -->
37
+ <!ENTITY deg "&#176;"> <!-- degree sign, U+00B0 ISOnum -->
38
+ <!ENTITY plusmn "&#177;"> <!-- plus-minus sign = plus-or-minus sign,
39
+ U+00B1 ISOnum -->
40
+ <!ENTITY sup2 "&#178;"> <!-- superscript two = superscript digit two
41
+ = squared, U+00B2 ISOnum -->
42
+ <!ENTITY sup3 "&#179;"> <!-- superscript three = superscript digit three
43
+ = cubed, U+00B3 ISOnum -->
44
+ <!ENTITY acute "&#180;"> <!-- acute accent = spacing acute,
45
+ U+00B4 ISOdia -->
46
+ <!ENTITY micro "&#181;"> <!-- micro sign, U+00B5 ISOnum -->
47
+ <!ENTITY para "&#182;"> <!-- pilcrow sign = paragraph sign,
48
+ U+00B6 ISOnum -->
49
+ <!ENTITY middot "&#183;"> <!-- middle dot = Georgian comma
50
+ = Greek middle dot, U+00B7 ISOnum -->
51
+ <!ENTITY cedil "&#184;"> <!-- cedilla = spacing cedilla, U+00B8 ISOdia -->
52
+ <!ENTITY sup1 "&#185;"> <!-- superscript one = superscript digit one,
53
+ U+00B9 ISOnum -->
54
+ <!ENTITY ordm "&#186;"> <!-- masculine ordinal indicator,
55
+ U+00BA ISOnum -->
56
+ <!ENTITY raquo "&#187;"> <!-- right-pointing double angle quotation mark
57
+ = right pointing guillemet, U+00BB ISOnum -->
58
+ <!ENTITY frac14 "&#188;"> <!-- vulgar fraction one quarter
59
+ = fraction one quarter, U+00BC ISOnum -->
60
+ <!ENTITY frac12 "&#189;"> <!-- vulgar fraction one half
61
+ = fraction one half, U+00BD ISOnum -->
62
+ <!ENTITY frac34 "&#190;"> <!-- vulgar fraction three quarters
63
+ = fraction three quarters, U+00BE ISOnum -->
64
+ <!ENTITY iquest "&#191;"> <!-- inverted question mark
65
+ = turned question mark, U+00BF ISOnum -->
66
+ <!ENTITY Agrave "&#192;"> <!-- latin capital letter A with grave
67
+ = latin capital letter A grave,
68
+ U+00C0 ISOlat1 -->
69
+ <!ENTITY Aacute "&#193;"> <!-- latin capital letter A with acute,
70
+ U+00C1 ISOlat1 -->
71
+ <!ENTITY Acirc "&#194;"> <!-- latin capital letter A with circumflex,
72
+ U+00C2 ISOlat1 -->
73
+ <!ENTITY Atilde "&#195;"> <!-- latin capital letter A with tilde,
74
+ U+00C3 ISOlat1 -->
75
+ <!ENTITY Auml "&#196;"> <!-- latin capital letter A with diaeresis,
76
+ U+00C4 ISOlat1 -->
77
+ <!ENTITY Aring "&#197;"> <!-- latin capital letter A with ring above
78
+ = latin capital letter A ring,
79
+ U+00C5 ISOlat1 -->
80
+ <!ENTITY AElig "&#198;"> <!-- latin capital letter AE
81
+ = latin capital ligature AE,
82
+ U+00C6 ISOlat1 -->
83
+ <!ENTITY Ccedil "&#199;"> <!-- latin capital letter C with cedilla,
84
+ U+00C7 ISOlat1 -->
85
+ <!ENTITY Egrave "&#200;"> <!-- latin capital letter E with grave,
86
+ U+00C8 ISOlat1 -->
87
+ <!ENTITY Eacute "&#201;"> <!-- latin capital letter E with acute,
88
+ U+00C9 ISOlat1 -->
89
+ <!ENTITY Ecirc "&#202;"> <!-- latin capital letter E with circumflex,
90
+ U+00CA ISOlat1 -->
91
+ <!ENTITY Euml "&#203;"> <!-- latin capital letter E with diaeresis,
92
+ U+00CB ISOlat1 -->
93
+ <!ENTITY Igrave "&#204;"> <!-- latin capital letter I with grave,
94
+ U+00CC ISOlat1 -->
95
+ <!ENTITY Iacute "&#205;"> <!-- latin capital letter I with acute,
96
+ U+00CD ISOlat1 -->
97
+ <!ENTITY Icirc "&#206;"> <!-- latin capital letter I with circumflex,
98
+ U+00CE ISOlat1 -->
99
+ <!ENTITY Iuml "&#207;"> <!-- latin capital letter I with diaeresis,
100
+ U+00CF ISOlat1 -->
101
+ <!ENTITY ETH "&#208;"> <!-- latin capital letter ETH, U+00D0 ISOlat1 -->
102
+ <!ENTITY Ntilde "&#209;"> <!-- latin capital letter N with tilde,
103
+ U+00D1 ISOlat1 -->
104
+ <!ENTITY Ograve "&#210;"> <!-- latin capital letter O with grave,
105
+ U+00D2 ISOlat1 -->
106
+ <!ENTITY Oacute "&#211;"> <!-- latin capital letter O with acute,
107
+ U+00D3 ISOlat1 -->
108
+ <!ENTITY Ocirc "&#212;"> <!-- latin capital letter O with circumflex,
109
+ U+00D4 ISOlat1 -->
110
+ <!ENTITY Otilde "&#213;"> <!-- latin capital letter O with tilde,
111
+ U+00D5 ISOlat1 -->
112
+ <!ENTITY Ouml "&#214;"> <!-- latin capital letter O with diaeresis,
113
+ U+00D6 ISOlat1 -->
114
+ <!ENTITY times "&#215;"> <!-- multiplication sign, U+00D7 ISOnum -->
115
+ <!ENTITY Oslash "&#216;"> <!-- latin capital letter O with stroke
116
+ = latin capital letter O slash,
117
+ U+00D8 ISOlat1 -->
118
+ <!ENTITY Ugrave "&#217;"> <!-- latin capital letter U with grave,
119
+ U+00D9 ISOlat1 -->
120
+ <!ENTITY Uacute "&#218;"> <!-- latin capital letter U with acute,
121
+ U+00DA ISOlat1 -->
122
+ <!ENTITY Ucirc "&#219;"> <!-- latin capital letter U with circumflex,
123
+ U+00DB ISOlat1 -->
124
+ <!ENTITY Uuml "&#220;"> <!-- latin capital letter U with diaeresis,
125
+ U+00DC ISOlat1 -->
126
+ <!ENTITY Yacute "&#221;"> <!-- latin capital letter Y with acute,
127
+ U+00DD ISOlat1 -->
128
+ <!ENTITY THORN "&#222;"> <!-- latin capital letter THORN,
129
+ U+00DE ISOlat1 -->
130
+ <!ENTITY szlig "&#223;"> <!-- latin small letter sharp s = ess-zed,
131
+ U+00DF ISOlat1 -->
132
+ <!ENTITY agrave "&#224;"> <!-- latin small letter a with grave
133
+ = latin small letter a grave,
134
+ U+00E0 ISOlat1 -->
135
+ <!ENTITY aacute "&#225;"> <!-- latin small letter a with acute,
136
+ U+00E1 ISOlat1 -->
137
+ <!ENTITY acirc "&#226;"> <!-- latin small letter a with circumflex,
138
+ U+00E2 ISOlat1 -->
139
+ <!ENTITY atilde "&#227;"> <!-- latin small letter a with tilde,
140
+ U+00E3 ISOlat1 -->
141
+ <!ENTITY auml "&#228;"> <!-- latin small letter a with diaeresis,
142
+ U+00E4 ISOlat1 -->
143
+ <!ENTITY aring "&#229;"> <!-- latin small letter a with ring above
144
+ = latin small letter a ring,
145
+ U+00E5 ISOlat1 -->
146
+ <!ENTITY aelig "&#230;"> <!-- latin small letter ae
147
+ = latin small ligature ae, U+00E6 ISOlat1 -->
148
+ <!ENTITY ccedil "&#231;"> <!-- latin small letter c with cedilla,
149
+ U+00E7 ISOlat1 -->
150
+ <!ENTITY egrave "&#232;"> <!-- latin small letter e with grave,
151
+ U+00E8 ISOlat1 -->
152
+ <!ENTITY eacute "&#233;"> <!-- latin small letter e with acute,
153
+ U+00E9 ISOlat1 -->
154
+ <!ENTITY ecirc "&#234;"> <!-- latin small letter e with circumflex,
155
+ U+00EA ISOlat1 -->
156
+ <!ENTITY euml "&#235;"> <!-- latin small letter e with diaeresis,
157
+ U+00EB ISOlat1 -->
158
+ <!ENTITY igrave "&#236;"> <!-- latin small letter i with grave,
159
+ U+00EC ISOlat1 -->
160
+ <!ENTITY iacute "&#237;"> <!-- latin small letter i with acute,
161
+ U+00ED ISOlat1 -->
162
+ <!ENTITY icirc "&#238;"> <!-- latin small letter i with circumflex,
163
+ U+00EE ISOlat1 -->
164
+ <!ENTITY iuml "&#239;"> <!-- latin small letter i with diaeresis,
165
+ U+00EF ISOlat1 -->
166
+ <!ENTITY eth "&#240;"> <!-- latin small letter eth, U+00F0 ISOlat1 -->
167
+ <!ENTITY ntilde "&#241;"> <!-- latin small letter n with tilde,
168
+ U+00F1 ISOlat1 -->
169
+ <!ENTITY ograve "&#242;"> <!-- latin small letter o with grave,
170
+ U+00F2 ISOlat1 -->
171
+ <!ENTITY oacute "&#243;"> <!-- latin small letter o with acute,
172
+ U+00F3 ISOlat1 -->
173
+ <!ENTITY ocirc "&#244;"> <!-- latin small letter o with circumflex,
174
+ U+00F4 ISOlat1 -->
175
+ <!ENTITY otilde "&#245;"> <!-- latin small letter o with tilde,
176
+ U+00F5 ISOlat1 -->
177
+ <!ENTITY ouml "&#246;"> <!-- latin small letter o with diaeresis,
178
+ U+00F6 ISOlat1 -->
179
+ <!ENTITY divide "&#247;"> <!-- division sign, U+00F7 ISOnum -->
180
+ <!ENTITY oslash "&#248;"> <!-- latin small letter o with stroke,
181
+ = latin small letter o slash,
182
+ U+00F8 ISOlat1 -->
183
+ <!ENTITY ugrave "&#249;"> <!-- latin small letter u with grave,
184
+ U+00F9 ISOlat1 -->
185
+ <!ENTITY uacute "&#250;"> <!-- latin small letter u with acute,
186
+ U+00FA ISOlat1 -->
187
+ <!ENTITY ucirc "&#251;"> <!-- latin small letter u with circumflex,
188
+ U+00FB ISOlat1 -->
189
+ <!ENTITY uuml "&#252;"> <!-- latin small letter u with diaeresis,
190
+ U+00FC ISOlat1 -->
191
+ <!ENTITY yacute "&#253;"> <!-- latin small letter y with acute,
192
+ U+00FD ISOlat1 -->
193
+ <!ENTITY thorn "&#254;"> <!-- latin small letter thorn,
194
+ U+00FE ISOlat1 -->
195
+ <!ENTITY yuml "&#255;"> <!-- latin small letter y with diaeresis,
196
+ U+00FF ISOlat1 -->