mg2en 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/Guardfile +9 -0
- data/LICENSE +20 -0
- data/README.md +38 -0
- data/Rakefile +60 -0
- data/bin/mg2en +56 -0
- data/lib/mg2en.rb +10 -0
- data/lib/mg2en/direction.rb +17 -0
- data/lib/mg2en/generator.rb +56 -0
- data/lib/mg2en/ingredient.rb +46 -0
- data/lib/mg2en/options.rb +16 -0
- data/lib/mg2en/parser.rb +19 -0
- data/lib/mg2en/recipe.rb +82 -0
- data/lib/mg2en/version.rb +4 -0
- data/mg2en.gemspec +34 -0
- data/spec/direction_spec.rb +23 -0
- data/spec/dtds/enml2.dtd +592 -0
- data/spec/dtds/evernote-export3.dtd +295 -0
- data/spec/dtds/xhtml-lat1.ent +196 -0
- data/spec/dtds/xhtml-special.ent +80 -0
- data/spec/dtds/xhtml-symbol.ent +237 -0
- data/spec/fixtures/1.mgourmet3 +2107 -0
- data/spec/fixtures/2.mgourmet3 +52 -0
- data/spec/generator_spec.rb +16 -0
- data/spec/ingredient_spec.rb +36 -0
- data/spec/parser_spec.rb +29 -0
- data/spec/recipe_spec.rb +53 -0
- data/spec/spec_helper.rb +35 -0
- data/templates/default.haml +65 -0
- metadata +243 -0
@@ -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 " "> <!-- no-break space = non-breaking space,
|
14
|
+
U+00A0 ISOnum -->
|
15
|
+
<!ENTITY iexcl "¡"> <!-- inverted exclamation mark, U+00A1 ISOnum -->
|
16
|
+
<!ENTITY cent "¢"> <!-- cent sign, U+00A2 ISOnum -->
|
17
|
+
<!ENTITY pound "£"> <!-- pound sign, U+00A3 ISOnum -->
|
18
|
+
<!ENTITY curren "¤"> <!-- currency sign, U+00A4 ISOnum -->
|
19
|
+
<!ENTITY yen "¥"> <!-- yen sign = yuan sign, U+00A5 ISOnum -->
|
20
|
+
<!ENTITY brvbar "¦"> <!-- broken bar = broken vertical bar,
|
21
|
+
U+00A6 ISOnum -->
|
22
|
+
<!ENTITY sect "§"> <!-- section sign, U+00A7 ISOnum -->
|
23
|
+
<!ENTITY uml "¨"> <!-- diaeresis = spacing diaeresis,
|
24
|
+
U+00A8 ISOdia -->
|
25
|
+
<!ENTITY copy "©"> <!-- copyright sign, U+00A9 ISOnum -->
|
26
|
+
<!ENTITY ordf "ª"> <!-- feminine ordinal indicator, U+00AA ISOnum -->
|
27
|
+
<!ENTITY laquo "«"> <!-- left-pointing double angle quotation mark
|
28
|
+
= left pointing guillemet, U+00AB ISOnum -->
|
29
|
+
<!ENTITY not "¬"> <!-- not sign = angled dash,
|
30
|
+
U+00AC ISOnum -->
|
31
|
+
<!ENTITY shy "­"> <!-- soft hyphen = discretionary hyphen,
|
32
|
+
U+00AD ISOnum -->
|
33
|
+
<!ENTITY reg "®"> <!-- registered sign = registered trade mark sign,
|
34
|
+
U+00AE ISOnum -->
|
35
|
+
<!ENTITY macr "¯"> <!-- macron = spacing macron = overline
|
36
|
+
= APL overbar, U+00AF ISOdia -->
|
37
|
+
<!ENTITY deg "°"> <!-- degree sign, U+00B0 ISOnum -->
|
38
|
+
<!ENTITY plusmn "±"> <!-- plus-minus sign = plus-or-minus sign,
|
39
|
+
U+00B1 ISOnum -->
|
40
|
+
<!ENTITY sup2 "²"> <!-- superscript two = superscript digit two
|
41
|
+
= squared, U+00B2 ISOnum -->
|
42
|
+
<!ENTITY sup3 "³"> <!-- superscript three = superscript digit three
|
43
|
+
= cubed, U+00B3 ISOnum -->
|
44
|
+
<!ENTITY acute "´"> <!-- acute accent = spacing acute,
|
45
|
+
U+00B4 ISOdia -->
|
46
|
+
<!ENTITY micro "µ"> <!-- micro sign, U+00B5 ISOnum -->
|
47
|
+
<!ENTITY para "¶"> <!-- pilcrow sign = paragraph sign,
|
48
|
+
U+00B6 ISOnum -->
|
49
|
+
<!ENTITY middot "·"> <!-- middle dot = Georgian comma
|
50
|
+
= Greek middle dot, U+00B7 ISOnum -->
|
51
|
+
<!ENTITY cedil "¸"> <!-- cedilla = spacing cedilla, U+00B8 ISOdia -->
|
52
|
+
<!ENTITY sup1 "¹"> <!-- superscript one = superscript digit one,
|
53
|
+
U+00B9 ISOnum -->
|
54
|
+
<!ENTITY ordm "º"> <!-- masculine ordinal indicator,
|
55
|
+
U+00BA ISOnum -->
|
56
|
+
<!ENTITY raquo "»"> <!-- right-pointing double angle quotation mark
|
57
|
+
= right pointing guillemet, U+00BB ISOnum -->
|
58
|
+
<!ENTITY frac14 "¼"> <!-- vulgar fraction one quarter
|
59
|
+
= fraction one quarter, U+00BC ISOnum -->
|
60
|
+
<!ENTITY frac12 "½"> <!-- vulgar fraction one half
|
61
|
+
= fraction one half, U+00BD ISOnum -->
|
62
|
+
<!ENTITY frac34 "¾"> <!-- vulgar fraction three quarters
|
63
|
+
= fraction three quarters, U+00BE ISOnum -->
|
64
|
+
<!ENTITY iquest "¿"> <!-- inverted question mark
|
65
|
+
= turned question mark, U+00BF ISOnum -->
|
66
|
+
<!ENTITY Agrave "À"> <!-- latin capital letter A with grave
|
67
|
+
= latin capital letter A grave,
|
68
|
+
U+00C0 ISOlat1 -->
|
69
|
+
<!ENTITY Aacute "Á"> <!-- latin capital letter A with acute,
|
70
|
+
U+00C1 ISOlat1 -->
|
71
|
+
<!ENTITY Acirc "Â"> <!-- latin capital letter A with circumflex,
|
72
|
+
U+00C2 ISOlat1 -->
|
73
|
+
<!ENTITY Atilde "Ã"> <!-- latin capital letter A with tilde,
|
74
|
+
U+00C3 ISOlat1 -->
|
75
|
+
<!ENTITY Auml "Ä"> <!-- latin capital letter A with diaeresis,
|
76
|
+
U+00C4 ISOlat1 -->
|
77
|
+
<!ENTITY Aring "Å"> <!-- latin capital letter A with ring above
|
78
|
+
= latin capital letter A ring,
|
79
|
+
U+00C5 ISOlat1 -->
|
80
|
+
<!ENTITY AElig "Æ"> <!-- latin capital letter AE
|
81
|
+
= latin capital ligature AE,
|
82
|
+
U+00C6 ISOlat1 -->
|
83
|
+
<!ENTITY Ccedil "Ç"> <!-- latin capital letter C with cedilla,
|
84
|
+
U+00C7 ISOlat1 -->
|
85
|
+
<!ENTITY Egrave "È"> <!-- latin capital letter E with grave,
|
86
|
+
U+00C8 ISOlat1 -->
|
87
|
+
<!ENTITY Eacute "É"> <!-- latin capital letter E with acute,
|
88
|
+
U+00C9 ISOlat1 -->
|
89
|
+
<!ENTITY Ecirc "Ê"> <!-- latin capital letter E with circumflex,
|
90
|
+
U+00CA ISOlat1 -->
|
91
|
+
<!ENTITY Euml "Ë"> <!-- latin capital letter E with diaeresis,
|
92
|
+
U+00CB ISOlat1 -->
|
93
|
+
<!ENTITY Igrave "Ì"> <!-- latin capital letter I with grave,
|
94
|
+
U+00CC ISOlat1 -->
|
95
|
+
<!ENTITY Iacute "Í"> <!-- latin capital letter I with acute,
|
96
|
+
U+00CD ISOlat1 -->
|
97
|
+
<!ENTITY Icirc "Î"> <!-- latin capital letter I with circumflex,
|
98
|
+
U+00CE ISOlat1 -->
|
99
|
+
<!ENTITY Iuml "Ï"> <!-- latin capital letter I with diaeresis,
|
100
|
+
U+00CF ISOlat1 -->
|
101
|
+
<!ENTITY ETH "Ð"> <!-- latin capital letter ETH, U+00D0 ISOlat1 -->
|
102
|
+
<!ENTITY Ntilde "Ñ"> <!-- latin capital letter N with tilde,
|
103
|
+
U+00D1 ISOlat1 -->
|
104
|
+
<!ENTITY Ograve "Ò"> <!-- latin capital letter O with grave,
|
105
|
+
U+00D2 ISOlat1 -->
|
106
|
+
<!ENTITY Oacute "Ó"> <!-- latin capital letter O with acute,
|
107
|
+
U+00D3 ISOlat1 -->
|
108
|
+
<!ENTITY Ocirc "Ô"> <!-- latin capital letter O with circumflex,
|
109
|
+
U+00D4 ISOlat1 -->
|
110
|
+
<!ENTITY Otilde "Õ"> <!-- latin capital letter O with tilde,
|
111
|
+
U+00D5 ISOlat1 -->
|
112
|
+
<!ENTITY Ouml "Ö"> <!-- latin capital letter O with diaeresis,
|
113
|
+
U+00D6 ISOlat1 -->
|
114
|
+
<!ENTITY times "×"> <!-- multiplication sign, U+00D7 ISOnum -->
|
115
|
+
<!ENTITY Oslash "Ø"> <!-- latin capital letter O with stroke
|
116
|
+
= latin capital letter O slash,
|
117
|
+
U+00D8 ISOlat1 -->
|
118
|
+
<!ENTITY Ugrave "Ù"> <!-- latin capital letter U with grave,
|
119
|
+
U+00D9 ISOlat1 -->
|
120
|
+
<!ENTITY Uacute "Ú"> <!-- latin capital letter U with acute,
|
121
|
+
U+00DA ISOlat1 -->
|
122
|
+
<!ENTITY Ucirc "Û"> <!-- latin capital letter U with circumflex,
|
123
|
+
U+00DB ISOlat1 -->
|
124
|
+
<!ENTITY Uuml "Ü"> <!-- latin capital letter U with diaeresis,
|
125
|
+
U+00DC ISOlat1 -->
|
126
|
+
<!ENTITY Yacute "Ý"> <!-- latin capital letter Y with acute,
|
127
|
+
U+00DD ISOlat1 -->
|
128
|
+
<!ENTITY THORN "Þ"> <!-- latin capital letter THORN,
|
129
|
+
U+00DE ISOlat1 -->
|
130
|
+
<!ENTITY szlig "ß"> <!-- latin small letter sharp s = ess-zed,
|
131
|
+
U+00DF ISOlat1 -->
|
132
|
+
<!ENTITY agrave "à"> <!-- latin small letter a with grave
|
133
|
+
= latin small letter a grave,
|
134
|
+
U+00E0 ISOlat1 -->
|
135
|
+
<!ENTITY aacute "á"> <!-- latin small letter a with acute,
|
136
|
+
U+00E1 ISOlat1 -->
|
137
|
+
<!ENTITY acirc "â"> <!-- latin small letter a with circumflex,
|
138
|
+
U+00E2 ISOlat1 -->
|
139
|
+
<!ENTITY atilde "ã"> <!-- latin small letter a with tilde,
|
140
|
+
U+00E3 ISOlat1 -->
|
141
|
+
<!ENTITY auml "ä"> <!-- latin small letter a with diaeresis,
|
142
|
+
U+00E4 ISOlat1 -->
|
143
|
+
<!ENTITY aring "å"> <!-- latin small letter a with ring above
|
144
|
+
= latin small letter a ring,
|
145
|
+
U+00E5 ISOlat1 -->
|
146
|
+
<!ENTITY aelig "æ"> <!-- latin small letter ae
|
147
|
+
= latin small ligature ae, U+00E6 ISOlat1 -->
|
148
|
+
<!ENTITY ccedil "ç"> <!-- latin small letter c with cedilla,
|
149
|
+
U+00E7 ISOlat1 -->
|
150
|
+
<!ENTITY egrave "è"> <!-- latin small letter e with grave,
|
151
|
+
U+00E8 ISOlat1 -->
|
152
|
+
<!ENTITY eacute "é"> <!-- latin small letter e with acute,
|
153
|
+
U+00E9 ISOlat1 -->
|
154
|
+
<!ENTITY ecirc "ê"> <!-- latin small letter e with circumflex,
|
155
|
+
U+00EA ISOlat1 -->
|
156
|
+
<!ENTITY euml "ë"> <!-- latin small letter e with diaeresis,
|
157
|
+
U+00EB ISOlat1 -->
|
158
|
+
<!ENTITY igrave "ì"> <!-- latin small letter i with grave,
|
159
|
+
U+00EC ISOlat1 -->
|
160
|
+
<!ENTITY iacute "í"> <!-- latin small letter i with acute,
|
161
|
+
U+00ED ISOlat1 -->
|
162
|
+
<!ENTITY icirc "î"> <!-- latin small letter i with circumflex,
|
163
|
+
U+00EE ISOlat1 -->
|
164
|
+
<!ENTITY iuml "ï"> <!-- latin small letter i with diaeresis,
|
165
|
+
U+00EF ISOlat1 -->
|
166
|
+
<!ENTITY eth "ð"> <!-- latin small letter eth, U+00F0 ISOlat1 -->
|
167
|
+
<!ENTITY ntilde "ñ"> <!-- latin small letter n with tilde,
|
168
|
+
U+00F1 ISOlat1 -->
|
169
|
+
<!ENTITY ograve "ò"> <!-- latin small letter o with grave,
|
170
|
+
U+00F2 ISOlat1 -->
|
171
|
+
<!ENTITY oacute "ó"> <!-- latin small letter o with acute,
|
172
|
+
U+00F3 ISOlat1 -->
|
173
|
+
<!ENTITY ocirc "ô"> <!-- latin small letter o with circumflex,
|
174
|
+
U+00F4 ISOlat1 -->
|
175
|
+
<!ENTITY otilde "õ"> <!-- latin small letter o with tilde,
|
176
|
+
U+00F5 ISOlat1 -->
|
177
|
+
<!ENTITY ouml "ö"> <!-- latin small letter o with diaeresis,
|
178
|
+
U+00F6 ISOlat1 -->
|
179
|
+
<!ENTITY divide "÷"> <!-- division sign, U+00F7 ISOnum -->
|
180
|
+
<!ENTITY oslash "ø"> <!-- latin small letter o with stroke,
|
181
|
+
= latin small letter o slash,
|
182
|
+
U+00F8 ISOlat1 -->
|
183
|
+
<!ENTITY ugrave "ù"> <!-- latin small letter u with grave,
|
184
|
+
U+00F9 ISOlat1 -->
|
185
|
+
<!ENTITY uacute "ú"> <!-- latin small letter u with acute,
|
186
|
+
U+00FA ISOlat1 -->
|
187
|
+
<!ENTITY ucirc "û"> <!-- latin small letter u with circumflex,
|
188
|
+
U+00FB ISOlat1 -->
|
189
|
+
<!ENTITY uuml "ü"> <!-- latin small letter u with diaeresis,
|
190
|
+
U+00FC ISOlat1 -->
|
191
|
+
<!ENTITY yacute "ý"> <!-- latin small letter y with acute,
|
192
|
+
U+00FD ISOlat1 -->
|
193
|
+
<!ENTITY thorn "þ"> <!-- latin small letter thorn,
|
194
|
+
U+00FE ISOlat1 -->
|
195
|
+
<!ENTITY yuml "ÿ"> <!-- latin small letter y with diaeresis,
|
196
|
+
U+00FF ISOlat1 -->
|