unicode-input-toolconverter 0.2.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.
- package/.babelrc.json +3 -0
- package/.editorconfig +16 -0
- package/.nojekyll +0 -0
- package/.nyc_output/out.json +173804 -0
- package/.nyc_output/processinfo/index.json +1 -0
- package/CHANGES.md +11 -0
- package/COPYING.LESSER.txt +180 -0
- package/COPYING.txt +687 -0
- package/README.md +65 -0
- package/_locales/en-US/messages.json +3126 -0
- package/_locales/hu-HU/messages.json +3126 -0
- package/_locales/pt-BR/messages.json +3126 -0
- package/_locales/sv-SE/messages.json +3126 -0
- package/babel.config.json +5 -0
- package/browser_action/characterSelection.js +91 -0
- package/browser_action/charrefConverters.js +389 -0
- package/browser_action/chartBuild.js +155 -0
- package/browser_action/encodingBehaviors.js +72 -0
- package/browser_action/encodings.js +97 -0
- package/browser_action/entities.js +12 -0
- package/browser_action/entityBehaviors.js +96 -0
- package/browser_action/index-es.html +15 -0
- package/browser_action/index-instrumented.html +16 -0
- package/browser_action/index-pages.html +16 -0
- package/browser_action/index.html +16 -0
- package/browser_action/index.iife.min.js +2 -0
- package/browser_action/index.iife.min.js.map +1 -0
- package/browser_action/index.instrumented.iife.min.js +2 -0
- package/browser_action/index.instrumented.iife.min.js.map +1 -0
- package/browser_action/index.js +95 -0
- package/browser_action/preferences/prefDefaults.js +52 -0
- package/browser_action/service-worker/sw-activateCallback.js +53 -0
- package/browser_action/service-worker/sw-locales.json +6 -0
- package/browser_action/service-worker/sw-resources.json +73 -0
- package/browser_action/service-worker/sw-unicode-data.json +3 -0
- package/browser_action/styles/unicode-dialog.css +391 -0
- package/browser_action/templateUtils/elements.js +12 -0
- package/browser_action/templateUtils/fill.js +3 -0
- package/browser_action/templateUtils/validation.js +6 -0
- package/browser_action/templates/chartBuild.js +185 -0
- package/browser_action/templates/index.js +1304 -0
- package/browser_action/templatesElementCustomization/widgets.js +56 -0
- package/browser_action/unicode/UnicodeConverter.js +793 -0
- package/browser_action/unicode/charrefunicodeDb.js +258 -0
- package/browser_action/unicode/getScriptInfoForCodePoint.js +646 -0
- package/browser_action/unicode/hangul.js +253 -0
- package/browser_action/unicode/lastScriptNames.json +5 -0
- package/browser_action/unicode/parseUnihanFromTextFileStrings.js +56 -0
- package/browser_action/unicode/unicodeFieldInfo.js +120 -0
- package/browser_action/unicode/unicodeScripts.js +4912 -0
- package/browser_action/unicode/unihan.js +129 -0
- package/browser_action/unicode/unihanDbPopulate.js +26 -0
- package/browser_action/unicodecharref.js +1480 -0
- package/browser_action/utils/DOMUtils.js +122 -0
- package/browser_action/utils/FetchUtils.js +19 -0
- package/browser_action/utils/TextUtils.js +28 -0
- package/browser_action/utils/TypedArrayUtils.js +21 -0
- package/browser_action/utils/semicolonSeparatedToArray.js +12 -0
- package/browser_action/utils/setupServiceWorker.js +193 -0
- package/cypress.config.js +21 -0
- package/download/entities/copyright-software-20021231.html +70 -0
- package/download/entities/html5-uppercase.ent +54 -0
- package/download/entities/htmlmathml-f.ent +2164 -0
- package/download/entities/isoamsa.ent +201 -0
- package/download/entities/isoamsb.ent +177 -0
- package/download/entities/isoamsc.ent +77 -0
- package/download/entities/isoamsn.ent +148 -0
- package/download/entities/isoamso.ent +107 -0
- package/download/entities/isoamsr.ent +238 -0
- package/download/entities/isobox.ent +95 -0
- package/download/entities/isocyr1.ent +122 -0
- package/download/entities/isocyr2.ent +81 -0
- package/download/entities/isodia.ent +69 -0
- package/download/entities/isogrk1.ent +104 -0
- package/download/entities/isogrk2.ent +75 -0
- package/download/entities/isogrk3.ent +98 -0
- package/download/entities/isogrk4.ent +98 -0
- package/download/entities/isolat1.ent +117 -0
- package/download/entities/isolat2.ent +176 -0
- package/download/entities/isomfrk.ent +107 -0
- package/download/entities/isomopf.ent +81 -0
- package/download/entities/isomscr.ent +107 -0
- package/download/entities/isonum.ent +131 -0
- package/download/entities/isopub.ent +140 -0
- package/download/entities/isotech.ent +216 -0
- package/download/entities/mmlalias.ent +598 -0
- package/download/entities/mmlextra.ent +154 -0
- package/download/entities/predefined.ent +52 -0
- package/download/entities/w3centities-f.ent +2276 -0
- package/download/entities/xhtml1-lat1.ent +143 -0
- package/download/entities/xhtml1-special.ent +78 -0
- package/download/entities/xhtml1-symbol.ent +171 -0
- package/eslint.config.js +66 -0
- package/icons/openWindow16.png +0 -0
- package/icons/openWindow24.png +0 -0
- package/lgtm.yml +5 -0
- package/lib/background.html +11 -0
- package/lib/background.js +13 -0
- package/lib/overlay.css +6 -0
- package/manifest.json +37 -0
- package/package.json +121 -0
- package/polyfills/browser-polyfill.min.js +8 -0
- package/polyfills/browser-polyfill.min.js.map +1 -0
- package/server.js +61 -0
- package/sw.js +259 -0
- package/tools/entities-import.js +62 -0
- package/tools/findEsResources.js +30 -0
- package/tools/list-locales.js +17 -0
- package/tools/parseUnicodeCharts.js +428 -0
- package/tools/ucd-import.js +24 -0
- package/tools/unicode-charts.html +596 -0
- package/tools/unihan-import.js +72 -0
- package/unicode_copyright.txt +46 -0
- package/vendor/camelcase/index.js +110 -0
- package/vendor/fflate/esm/browser.js +2665 -0
- package/vendor/intl-dom/dist/index.esm.js +2962 -0
- package/vendor/jamilih/dist/jml-es.js +2359 -0
- package/vendor/jquery/dist/jquery.js +10716 -0
- package/vendor/json-6/dist/index.mjs +1783 -0
- package/vendor/miller-columns/dist/index-es.min.js +1 -0
- package/vendor/miller-columns/miller-columns.css +75 -0
- package/vendor/simple-prefs/dist/index.esm.js +286 -0
- package/web-ext-config.cjs +13 -0
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isocyr2.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1986
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Non-Russian Cyrillic//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isocyr2.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isocyr2 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Non-Russian Cyrillic//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isocyr2.ent"
|
|
51
|
+
>
|
|
52
|
+
%isocyr2;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY djcy "ђ" ><!--CYRILLIC SMALL LETTER DJE -->
|
|
57
|
+
<!ENTITY DJcy "Ђ" ><!--CYRILLIC CAPITAL LETTER DJE -->
|
|
58
|
+
<!ENTITY dscy "ѕ" ><!--CYRILLIC SMALL LETTER DZE -->
|
|
59
|
+
<!ENTITY DScy "Ѕ" ><!--CYRILLIC CAPITAL LETTER DZE -->
|
|
60
|
+
<!ENTITY dzcy "џ" ><!--CYRILLIC SMALL LETTER DZHE -->
|
|
61
|
+
<!ENTITY DZcy "Џ" ><!--CYRILLIC CAPITAL LETTER DZHE -->
|
|
62
|
+
<!ENTITY gjcy "ѓ" ><!--CYRILLIC SMALL LETTER GJE -->
|
|
63
|
+
<!ENTITY GJcy "Ѓ" ><!--CYRILLIC CAPITAL LETTER GJE -->
|
|
64
|
+
<!ENTITY iukcy "і" ><!--CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I -->
|
|
65
|
+
<!ENTITY Iukcy "І" ><!--CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I -->
|
|
66
|
+
<!ENTITY jsercy "ј" ><!--CYRILLIC SMALL LETTER JE -->
|
|
67
|
+
<!ENTITY Jsercy "Ј" ><!--CYRILLIC CAPITAL LETTER JE -->
|
|
68
|
+
<!ENTITY jukcy "є" ><!--CYRILLIC SMALL LETTER UKRAINIAN IE -->
|
|
69
|
+
<!ENTITY Jukcy "Є" ><!--CYRILLIC CAPITAL LETTER UKRAINIAN IE -->
|
|
70
|
+
<!ENTITY kjcy "ќ" ><!--CYRILLIC SMALL LETTER KJE -->
|
|
71
|
+
<!ENTITY KJcy "Ќ" ><!--CYRILLIC CAPITAL LETTER KJE -->
|
|
72
|
+
<!ENTITY ljcy "љ" ><!--CYRILLIC SMALL LETTER LJE -->
|
|
73
|
+
<!ENTITY LJcy "Љ" ><!--CYRILLIC CAPITAL LETTER LJE -->
|
|
74
|
+
<!ENTITY njcy "њ" ><!--CYRILLIC SMALL LETTER NJE -->
|
|
75
|
+
<!ENTITY NJcy "Њ" ><!--CYRILLIC CAPITAL LETTER NJE -->
|
|
76
|
+
<!ENTITY tshcy "ћ" ><!--CYRILLIC SMALL LETTER TSHE -->
|
|
77
|
+
<!ENTITY TSHcy "Ћ" ><!--CYRILLIC CAPITAL LETTER TSHE -->
|
|
78
|
+
<!ENTITY ubrcy "ў" ><!--CYRILLIC SMALL LETTER SHORT U -->
|
|
79
|
+
<!ENTITY Ubrcy "Ў" ><!--CYRILLIC CAPITAL LETTER SHORT U -->
|
|
80
|
+
<!ENTITY yicy "ї" ><!--CYRILLIC SMALL LETTER YI -->
|
|
81
|
+
<!ENTITY YIcy "Ї" ><!--CYRILLIC CAPITAL LETTER YI -->
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isodia.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1986
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Diacritical Marks//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isodia.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isodia PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Diacritical Marks//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isodia.ent"
|
|
51
|
+
>
|
|
52
|
+
%isodia;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY acute "´" ><!--ACUTE ACCENT -->
|
|
57
|
+
<!ENTITY breve "˘" ><!--BREVE -->
|
|
58
|
+
<!ENTITY caron "ˇ" ><!--CARON -->
|
|
59
|
+
<!ENTITY cedil "¸" ><!--CEDILLA -->
|
|
60
|
+
<!ENTITY circ "ˆ" ><!--MODIFIER LETTER CIRCUMFLEX ACCENT -->
|
|
61
|
+
<!ENTITY dblac "˝" ><!--DOUBLE ACUTE ACCENT -->
|
|
62
|
+
<!ENTITY die "¨" ><!--DIAERESIS -->
|
|
63
|
+
<!ENTITY dot "˙" ><!--DOT ABOVE -->
|
|
64
|
+
<!ENTITY grave "`" ><!--GRAVE ACCENT -->
|
|
65
|
+
<!ENTITY macr "¯" ><!--MACRON -->
|
|
66
|
+
<!ENTITY ogon "˛" ><!--OGONEK -->
|
|
67
|
+
<!ENTITY ring "˚" ><!--RING ABOVE -->
|
|
68
|
+
<!ENTITY tilde "˜" ><!--SMALL TILDE -->
|
|
69
|
+
<!ENTITY uml "¨" ><!--DIAERESIS -->
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isogrk1.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1986
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Greek Letters//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isogrk1.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isogrk1 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Greek Letters//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isogrk1.ent"
|
|
51
|
+
>
|
|
52
|
+
%isogrk1;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY agr "α" ><!--GREEK SMALL LETTER ALPHA -->
|
|
57
|
+
<!ENTITY Agr "Α" ><!--GREEK CAPITAL LETTER ALPHA -->
|
|
58
|
+
<!ENTITY bgr "β" ><!--GREEK SMALL LETTER BETA -->
|
|
59
|
+
<!ENTITY Bgr "Β" ><!--GREEK CAPITAL LETTER BETA -->
|
|
60
|
+
<!ENTITY dgr "δ" ><!--GREEK SMALL LETTER DELTA -->
|
|
61
|
+
<!ENTITY Dgr "Δ" ><!--GREEK CAPITAL LETTER DELTA -->
|
|
62
|
+
<!ENTITY eegr "η" ><!--GREEK SMALL LETTER ETA -->
|
|
63
|
+
<!ENTITY EEgr "Η" ><!--GREEK CAPITAL LETTER ETA -->
|
|
64
|
+
<!ENTITY egr "ε" ><!--GREEK SMALL LETTER EPSILON -->
|
|
65
|
+
<!ENTITY Egr "Ε" ><!--GREEK CAPITAL LETTER EPSILON -->
|
|
66
|
+
<!ENTITY ggr "γ" ><!--GREEK SMALL LETTER GAMMA -->
|
|
67
|
+
<!ENTITY Ggr "Γ" ><!--GREEK CAPITAL LETTER GAMMA -->
|
|
68
|
+
<!ENTITY igr "ι" ><!--GREEK SMALL LETTER IOTA -->
|
|
69
|
+
<!ENTITY Igr "Ι" ><!--GREEK CAPITAL LETTER IOTA -->
|
|
70
|
+
<!ENTITY kgr "κ" ><!--GREEK SMALL LETTER KAPPA -->
|
|
71
|
+
<!ENTITY Kgr "Κ" ><!--GREEK CAPITAL LETTER KAPPA -->
|
|
72
|
+
<!ENTITY khgr "χ" ><!--GREEK SMALL LETTER CHI -->
|
|
73
|
+
<!ENTITY KHgr "Χ" ><!--GREEK CAPITAL LETTER CHI -->
|
|
74
|
+
<!ENTITY lgr "λ" ><!--GREEK SMALL LETTER LAMDA -->
|
|
75
|
+
<!ENTITY Lgr "Λ" ><!--GREEK CAPITAL LETTER LAMDA -->
|
|
76
|
+
<!ENTITY mgr "μ" ><!--GREEK SMALL LETTER MU -->
|
|
77
|
+
<!ENTITY Mgr "Μ" ><!--GREEK CAPITAL LETTER MU -->
|
|
78
|
+
<!ENTITY ngr "ν" ><!--GREEK SMALL LETTER NU -->
|
|
79
|
+
<!ENTITY Ngr "Ν" ><!--GREEK CAPITAL LETTER NU -->
|
|
80
|
+
<!ENTITY ogr "ο" ><!--GREEK SMALL LETTER OMICRON -->
|
|
81
|
+
<!ENTITY Ogr "Ο" ><!--GREEK CAPITAL LETTER OMICRON -->
|
|
82
|
+
<!ENTITY ohgr "ω" ><!--GREEK SMALL LETTER OMEGA -->
|
|
83
|
+
<!ENTITY OHgr "Ω" ><!--GREEK CAPITAL LETTER OMEGA -->
|
|
84
|
+
<!ENTITY pgr "π" ><!--GREEK SMALL LETTER PI -->
|
|
85
|
+
<!ENTITY Pgr "Π" ><!--GREEK CAPITAL LETTER PI -->
|
|
86
|
+
<!ENTITY phgr "φ" ><!--GREEK SMALL LETTER PHI -->
|
|
87
|
+
<!ENTITY PHgr "Φ" ><!--GREEK CAPITAL LETTER PHI -->
|
|
88
|
+
<!ENTITY psgr "ψ" ><!--GREEK SMALL LETTER PSI -->
|
|
89
|
+
<!ENTITY PSgr "Ψ" ><!--GREEK CAPITAL LETTER PSI -->
|
|
90
|
+
<!ENTITY rgr "ρ" ><!--GREEK SMALL LETTER RHO -->
|
|
91
|
+
<!ENTITY Rgr "Ρ" ><!--GREEK CAPITAL LETTER RHO -->
|
|
92
|
+
<!ENTITY sfgr "ς" ><!--GREEK SMALL LETTER FINAL SIGMA -->
|
|
93
|
+
<!ENTITY sgr "σ" ><!--GREEK SMALL LETTER SIGMA -->
|
|
94
|
+
<!ENTITY Sgr "Σ" ><!--GREEK CAPITAL LETTER SIGMA -->
|
|
95
|
+
<!ENTITY tgr "τ" ><!--GREEK SMALL LETTER TAU -->
|
|
96
|
+
<!ENTITY Tgr "Τ" ><!--GREEK CAPITAL LETTER TAU -->
|
|
97
|
+
<!ENTITY thgr "θ" ><!--GREEK SMALL LETTER THETA -->
|
|
98
|
+
<!ENTITY THgr "Θ" ><!--GREEK CAPITAL LETTER THETA -->
|
|
99
|
+
<!ENTITY ugr "υ" ><!--GREEK SMALL LETTER UPSILON -->
|
|
100
|
+
<!ENTITY Ugr "Υ" ><!--GREEK CAPITAL LETTER UPSILON -->
|
|
101
|
+
<!ENTITY xgr "ξ" ><!--GREEK SMALL LETTER XI -->
|
|
102
|
+
<!ENTITY Xgr "Ξ" ><!--GREEK CAPITAL LETTER XI -->
|
|
103
|
+
<!ENTITY zgr "ζ" ><!--GREEK SMALL LETTER ZETA -->
|
|
104
|
+
<!ENTITY Zgr "Ζ" ><!--GREEK CAPITAL LETTER ZETA -->
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isogrk2.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1986
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Monotoniko Greek//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isogrk2.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isogrk2 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Monotoniko Greek//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isogrk2.ent"
|
|
51
|
+
>
|
|
52
|
+
%isogrk2;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY aacgr "ά" ><!--GREEK SMALL LETTER ALPHA WITH TONOS -->
|
|
57
|
+
<!ENTITY Aacgr "Ά" ><!--GREEK CAPITAL LETTER ALPHA WITH TONOS -->
|
|
58
|
+
<!ENTITY eacgr "έ" ><!--GREEK SMALL LETTER EPSILON WITH TONOS -->
|
|
59
|
+
<!ENTITY Eacgr "Έ" ><!--GREEK CAPITAL LETTER EPSILON WITH TONOS -->
|
|
60
|
+
<!ENTITY eeacgr "ή" ><!--GREEK SMALL LETTER ETA WITH TONOS -->
|
|
61
|
+
<!ENTITY EEacgr "Ή" ><!--GREEK CAPITAL LETTER ETA WITH TONOS -->
|
|
62
|
+
<!ENTITY iacgr "ί" ><!--GREEK SMALL LETTER IOTA WITH TONOS -->
|
|
63
|
+
<!ENTITY Iacgr "Ί" ><!--GREEK CAPITAL LETTER IOTA WITH TONOS -->
|
|
64
|
+
<!ENTITY idiagr "ΐ" ><!--GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS -->
|
|
65
|
+
<!ENTITY idigr "ϊ" ><!--GREEK SMALL LETTER IOTA WITH DIALYTIKA -->
|
|
66
|
+
<!ENTITY Idigr "Ϊ" ><!--GREEK CAPITAL LETTER IOTA WITH DIALYTIKA -->
|
|
67
|
+
<!ENTITY oacgr "ό" ><!--GREEK SMALL LETTER OMICRON WITH TONOS -->
|
|
68
|
+
<!ENTITY Oacgr "Ό" ><!--GREEK CAPITAL LETTER OMICRON WITH TONOS -->
|
|
69
|
+
<!ENTITY ohacgr "ώ" ><!--GREEK SMALL LETTER OMEGA WITH TONOS -->
|
|
70
|
+
<!ENTITY OHacgr "Ώ" ><!--GREEK CAPITAL LETTER OMEGA WITH TONOS -->
|
|
71
|
+
<!ENTITY uacgr "ύ" ><!--GREEK SMALL LETTER UPSILON WITH TONOS -->
|
|
72
|
+
<!ENTITY Uacgr "Ύ" ><!--GREEK CAPITAL LETTER UPSILON WITH TONOS -->
|
|
73
|
+
<!ENTITY udiagr "ΰ" ><!--GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS -->
|
|
74
|
+
<!ENTITY udigr "ϋ" ><!--GREEK SMALL LETTER UPSILON WITH DIALYTIKA -->
|
|
75
|
+
<!ENTITY Udigr "Ϋ" ><!--GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA -->
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isogrk3.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1991
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Greek Symbols//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isogrk3.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isogrk3 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Greek Symbols//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isogrk3.ent"
|
|
51
|
+
>
|
|
52
|
+
%isogrk3;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY alpha "α" ><!--GREEK SMALL LETTER ALPHA -->
|
|
57
|
+
<!ENTITY beta "β" ><!--GREEK SMALL LETTER BETA -->
|
|
58
|
+
<!ENTITY chi "χ" ><!--GREEK SMALL LETTER CHI -->
|
|
59
|
+
<!ENTITY delta "δ" ><!--GREEK SMALL LETTER DELTA -->
|
|
60
|
+
<!ENTITY Delta "Δ" ><!--GREEK CAPITAL LETTER DELTA -->
|
|
61
|
+
<!ENTITY epsi "ε" ><!--GREEK SMALL LETTER EPSILON -->
|
|
62
|
+
<!ENTITY epsiv "ϵ" ><!--GREEK LUNATE EPSILON SYMBOL -->
|
|
63
|
+
<!ENTITY eta "η" ><!--GREEK SMALL LETTER ETA -->
|
|
64
|
+
<!ENTITY gamma "γ" ><!--GREEK SMALL LETTER GAMMA -->
|
|
65
|
+
<!ENTITY Gamma "Γ" ><!--GREEK CAPITAL LETTER GAMMA -->
|
|
66
|
+
<!ENTITY gammad "ϝ" ><!--GREEK SMALL LETTER DIGAMMA -->
|
|
67
|
+
<!ENTITY Gammad "Ϝ" ><!--GREEK LETTER DIGAMMA -->
|
|
68
|
+
<!ENTITY iota "ι" ><!--GREEK SMALL LETTER IOTA -->
|
|
69
|
+
<!ENTITY kappa "κ" ><!--GREEK SMALL LETTER KAPPA -->
|
|
70
|
+
<!ENTITY kappav "ϰ" ><!--GREEK KAPPA SYMBOL -->
|
|
71
|
+
<!ENTITY lambda "λ" ><!--GREEK SMALL LETTER LAMDA -->
|
|
72
|
+
<!ENTITY Lambda "Λ" ><!--GREEK CAPITAL LETTER LAMDA -->
|
|
73
|
+
<!ENTITY mu "μ" ><!--GREEK SMALL LETTER MU -->
|
|
74
|
+
<!ENTITY nu "ν" ><!--GREEK SMALL LETTER NU -->
|
|
75
|
+
<!ENTITY omega "ω" ><!--GREEK SMALL LETTER OMEGA -->
|
|
76
|
+
<!ENTITY Omega "Ω" ><!--GREEK CAPITAL LETTER OMEGA -->
|
|
77
|
+
<!ENTITY phi "φ" ><!--GREEK SMALL LETTER PHI -->
|
|
78
|
+
<!ENTITY Phi "Φ" ><!--GREEK CAPITAL LETTER PHI -->
|
|
79
|
+
<!ENTITY phiv "ϕ" ><!--GREEK PHI SYMBOL -->
|
|
80
|
+
<!ENTITY pi "π" ><!--GREEK SMALL LETTER PI -->
|
|
81
|
+
<!ENTITY Pi "Π" ><!--GREEK CAPITAL LETTER PI -->
|
|
82
|
+
<!ENTITY piv "ϖ" ><!--GREEK PI SYMBOL -->
|
|
83
|
+
<!ENTITY psi "ψ" ><!--GREEK SMALL LETTER PSI -->
|
|
84
|
+
<!ENTITY Psi "Ψ" ><!--GREEK CAPITAL LETTER PSI -->
|
|
85
|
+
<!ENTITY rho "ρ" ><!--GREEK SMALL LETTER RHO -->
|
|
86
|
+
<!ENTITY rhov "ϱ" ><!--GREEK RHO SYMBOL -->
|
|
87
|
+
<!ENTITY sigma "σ" ><!--GREEK SMALL LETTER SIGMA -->
|
|
88
|
+
<!ENTITY Sigma "Σ" ><!--GREEK CAPITAL LETTER SIGMA -->
|
|
89
|
+
<!ENTITY sigmav "ς" ><!--GREEK SMALL LETTER FINAL SIGMA -->
|
|
90
|
+
<!ENTITY tau "τ" ><!--GREEK SMALL LETTER TAU -->
|
|
91
|
+
<!ENTITY theta "θ" ><!--GREEK SMALL LETTER THETA -->
|
|
92
|
+
<!ENTITY Theta "Θ" ><!--GREEK CAPITAL LETTER THETA -->
|
|
93
|
+
<!ENTITY thetav "ϑ" ><!--GREEK THETA SYMBOL -->
|
|
94
|
+
<!ENTITY upsi "υ" ><!--GREEK SMALL LETTER UPSILON -->
|
|
95
|
+
<!ENTITY Upsi "ϒ" ><!--GREEK UPSILON WITH HOOK SYMBOL -->
|
|
96
|
+
<!ENTITY xi "ξ" ><!--GREEK SMALL LETTER XI -->
|
|
97
|
+
<!ENTITY Xi "Ξ" ><!--GREEK CAPITAL LETTER XI -->
|
|
98
|
+
<!ENTITY zeta "ζ" ><!--GREEK SMALL LETTER ZETA -->
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isogrk4.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1991
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Alternative Greek Symbols//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isogrk4.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isogrk4 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Alternative Greek Symbols//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isogrk4.ent"
|
|
51
|
+
>
|
|
52
|
+
%isogrk4;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY b.alpha "𝛂" ><!--MATHEMATICAL BOLD SMALL ALPHA -->
|
|
57
|
+
<!ENTITY b.beta "𝛃" ><!--MATHEMATICAL BOLD SMALL BETA -->
|
|
58
|
+
<!ENTITY b.chi "𝛘" ><!--MATHEMATICAL BOLD SMALL CHI -->
|
|
59
|
+
<!ENTITY b.delta "𝛅" ><!--MATHEMATICAL BOLD SMALL DELTA -->
|
|
60
|
+
<!ENTITY b.Delta "𝚫" ><!--MATHEMATICAL BOLD CAPITAL DELTA -->
|
|
61
|
+
<!ENTITY b.epsi "𝛆" ><!--MATHEMATICAL BOLD SMALL EPSILON -->
|
|
62
|
+
<!ENTITY b.epsiv "𝛜" ><!--MATHEMATICAL BOLD EPSILON SYMBOL -->
|
|
63
|
+
<!ENTITY b.eta "𝛈" ><!--MATHEMATICAL BOLD SMALL ETA -->
|
|
64
|
+
<!ENTITY b.gamma "𝛄" ><!--MATHEMATICAL BOLD SMALL GAMMA -->
|
|
65
|
+
<!ENTITY b.Gamma "𝚪" ><!--MATHEMATICAL BOLD CAPITAL GAMMA -->
|
|
66
|
+
<!ENTITY b.gammad "𝟋" ><!--MATHEMATICAL BOLD SMALL DIGAMMA -->
|
|
67
|
+
<!ENTITY b.Gammad "𝟊" ><!--MATHEMATICAL BOLD CAPITAL DIGAMMA -->
|
|
68
|
+
<!ENTITY b.iota "𝛊" ><!--MATHEMATICAL BOLD SMALL IOTA -->
|
|
69
|
+
<!ENTITY b.kappa "𝛋" ><!--MATHEMATICAL BOLD SMALL KAPPA -->
|
|
70
|
+
<!ENTITY b.kappav "𝛞" ><!--MATHEMATICAL BOLD KAPPA SYMBOL -->
|
|
71
|
+
<!ENTITY b.lambda "𝛌" ><!--MATHEMATICAL BOLD SMALL LAMDA -->
|
|
72
|
+
<!ENTITY b.Lambda "𝚲" ><!--MATHEMATICAL BOLD CAPITAL LAMDA -->
|
|
73
|
+
<!ENTITY b.mu "𝛍" ><!--MATHEMATICAL BOLD SMALL MU -->
|
|
74
|
+
<!ENTITY b.nu "𝛎" ><!--MATHEMATICAL BOLD SMALL NU -->
|
|
75
|
+
<!ENTITY b.omega "𝛚" ><!--MATHEMATICAL BOLD SMALL OMEGA -->
|
|
76
|
+
<!ENTITY b.Omega "𝛀" ><!--MATHEMATICAL BOLD CAPITAL OMEGA -->
|
|
77
|
+
<!ENTITY b.phi "𝛗" ><!--MATHEMATICAL BOLD SMALL PHI -->
|
|
78
|
+
<!ENTITY b.Phi "𝚽" ><!--MATHEMATICAL BOLD CAPITAL PHI -->
|
|
79
|
+
<!ENTITY b.phiv "𝛟" ><!--MATHEMATICAL BOLD PHI SYMBOL -->
|
|
80
|
+
<!ENTITY b.pi "𝛑" ><!--MATHEMATICAL BOLD SMALL PI -->
|
|
81
|
+
<!ENTITY b.Pi "𝚷" ><!--MATHEMATICAL BOLD CAPITAL PI -->
|
|
82
|
+
<!ENTITY b.piv "𝛡" ><!--MATHEMATICAL BOLD PI SYMBOL -->
|
|
83
|
+
<!ENTITY b.psi "𝛙" ><!--MATHEMATICAL BOLD SMALL PSI -->
|
|
84
|
+
<!ENTITY b.Psi "𝚿" ><!--MATHEMATICAL BOLD CAPITAL PSI -->
|
|
85
|
+
<!ENTITY b.rho "𝛒" ><!--MATHEMATICAL BOLD SMALL RHO -->
|
|
86
|
+
<!ENTITY b.rhov "𝛠" ><!--MATHEMATICAL BOLD RHO SYMBOL -->
|
|
87
|
+
<!ENTITY b.sigma "𝛔" ><!--MATHEMATICAL BOLD SMALL SIGMA -->
|
|
88
|
+
<!ENTITY b.Sigma "𝚺" ><!--MATHEMATICAL BOLD CAPITAL SIGMA -->
|
|
89
|
+
<!ENTITY b.sigmav "𝛓" ><!--MATHEMATICAL BOLD SMALL FINAL SIGMA -->
|
|
90
|
+
<!ENTITY b.tau "𝛕" ><!--MATHEMATICAL BOLD SMALL TAU -->
|
|
91
|
+
<!ENTITY b.Theta "𝚯" ><!--MATHEMATICAL BOLD CAPITAL THETA -->
|
|
92
|
+
<!ENTITY b.thetas "𝛉" ><!--MATHEMATICAL BOLD SMALL THETA -->
|
|
93
|
+
<!ENTITY b.thetav "𝛝" ><!--MATHEMATICAL BOLD THETA SYMBOL -->
|
|
94
|
+
<!ENTITY b.upsi "𝛖" ><!--MATHEMATICAL BOLD SMALL UPSILON -->
|
|
95
|
+
<!ENTITY b.Upsi "𝚼" ><!--MATHEMATICAL BOLD CAPITAL UPSILON -->
|
|
96
|
+
<!ENTITY b.xi "𝛏" ><!--MATHEMATICAL BOLD SMALL XI -->
|
|
97
|
+
<!ENTITY b.Xi "𝚵" ><!--MATHEMATICAL BOLD CAPITAL XI -->
|
|
98
|
+
<!ENTITY b.zeta "𝛇" ><!--MATHEMATICAL BOLD SMALL ZETA -->
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
|
|
2
|
+
<!--
|
|
3
|
+
File isolat1.ent produced by the XSL script entities.xsl
|
|
4
|
+
from input data in unicode.xml.
|
|
5
|
+
|
|
6
|
+
Copyright 1998 - 2011 W3C.
|
|
7
|
+
|
|
8
|
+
Use and distribution of this code are permitted under the terms of
|
|
9
|
+
either of the following two licences:
|
|
10
|
+
|
|
11
|
+
1) W3C Software Notice and License.
|
|
12
|
+
http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231.html
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
2) The license used for the WHATWG HTML specification,
|
|
16
|
+
which states, in full:
|
|
17
|
+
You are granted a license to use, reproduce and create derivative
|
|
18
|
+
works of this document.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
Please report any errors to David Carlisle
|
|
22
|
+
via the public W3C list www-math@w3.org.
|
|
23
|
+
|
|
24
|
+
The numeric character values assigned to each entity
|
|
25
|
+
(should) match the Unicode assignments in Unicode 5.x.
|
|
26
|
+
|
|
27
|
+
Entity names in this file are derived from files carrying the
|
|
28
|
+
following notice:
|
|
29
|
+
|
|
30
|
+
(C) International Organization for Standardization 1986
|
|
31
|
+
Permission to copy in any form is granted for use with
|
|
32
|
+
conforming SGML systems and applications as defined in
|
|
33
|
+
ISO 8879, provided this notice is included in all copies.
|
|
34
|
+
|
|
35
|
+
-->
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
<!--
|
|
39
|
+
|
|
40
|
+
Public identifier: -//W3C//ENTITIES Added Latin 1//EN//XML
|
|
41
|
+
System identifier: http://www.w3.org/2003/entities/2007/isolat1.ent
|
|
42
|
+
|
|
43
|
+
The public identifier should always be used verbatim.
|
|
44
|
+
The system identifier may be changed to suit local requirements.
|
|
45
|
+
|
|
46
|
+
Typical invocation:
|
|
47
|
+
|
|
48
|
+
<!ENTITY % isolat1 PUBLIC
|
|
49
|
+
"-//W3C//ENTITIES Added Latin 1//EN//XML"
|
|
50
|
+
"http://www.w3.org/2003/entities/2007/isolat1.ent"
|
|
51
|
+
>
|
|
52
|
+
%isolat1;
|
|
53
|
+
|
|
54
|
+
-->
|
|
55
|
+
|
|
56
|
+
<!ENTITY aacute "á" ><!--LATIN SMALL LETTER A WITH ACUTE -->
|
|
57
|
+
<!ENTITY Aacute "Á" ><!--LATIN CAPITAL LETTER A WITH ACUTE -->
|
|
58
|
+
<!ENTITY acirc "â" ><!--LATIN SMALL LETTER A WITH CIRCUMFLEX -->
|
|
59
|
+
<!ENTITY Acirc "Â" ><!--LATIN CAPITAL LETTER A WITH CIRCUMFLEX -->
|
|
60
|
+
<!ENTITY aelig "æ" ><!--LATIN SMALL LETTER AE -->
|
|
61
|
+
<!ENTITY AElig "Æ" ><!--LATIN CAPITAL LETTER AE -->
|
|
62
|
+
<!ENTITY agrave "à" ><!--LATIN SMALL LETTER A WITH GRAVE -->
|
|
63
|
+
<!ENTITY Agrave "À" ><!--LATIN CAPITAL LETTER A WITH GRAVE -->
|
|
64
|
+
<!ENTITY aring "å" ><!--LATIN SMALL LETTER A WITH RING ABOVE -->
|
|
65
|
+
<!ENTITY Aring "Å" ><!--LATIN CAPITAL LETTER A WITH RING ABOVE -->
|
|
66
|
+
<!ENTITY atilde "ã" ><!--LATIN SMALL LETTER A WITH TILDE -->
|
|
67
|
+
<!ENTITY Atilde "Ã" ><!--LATIN CAPITAL LETTER A WITH TILDE -->
|
|
68
|
+
<!ENTITY auml "ä" ><!--LATIN SMALL LETTER A WITH DIAERESIS -->
|
|
69
|
+
<!ENTITY Auml "Ä" ><!--LATIN CAPITAL LETTER A WITH DIAERESIS -->
|
|
70
|
+
<!ENTITY ccedil "ç" ><!--LATIN SMALL LETTER C WITH CEDILLA -->
|
|
71
|
+
<!ENTITY Ccedil "Ç" ><!--LATIN CAPITAL LETTER C WITH CEDILLA -->
|
|
72
|
+
<!ENTITY eacute "é" ><!--LATIN SMALL LETTER E WITH ACUTE -->
|
|
73
|
+
<!ENTITY Eacute "É" ><!--LATIN CAPITAL LETTER E WITH ACUTE -->
|
|
74
|
+
<!ENTITY ecirc "ê" ><!--LATIN SMALL LETTER E WITH CIRCUMFLEX -->
|
|
75
|
+
<!ENTITY Ecirc "Ê" ><!--LATIN CAPITAL LETTER E WITH CIRCUMFLEX -->
|
|
76
|
+
<!ENTITY egrave "è" ><!--LATIN SMALL LETTER E WITH GRAVE -->
|
|
77
|
+
<!ENTITY Egrave "È" ><!--LATIN CAPITAL LETTER E WITH GRAVE -->
|
|
78
|
+
<!ENTITY eth "ð" ><!--LATIN SMALL LETTER ETH -->
|
|
79
|
+
<!ENTITY ETH "Ð" ><!--LATIN CAPITAL LETTER ETH -->
|
|
80
|
+
<!ENTITY euml "ë" ><!--LATIN SMALL LETTER E WITH DIAERESIS -->
|
|
81
|
+
<!ENTITY Euml "Ë" ><!--LATIN CAPITAL LETTER E WITH DIAERESIS -->
|
|
82
|
+
<!ENTITY iacute "í" ><!--LATIN SMALL LETTER I WITH ACUTE -->
|
|
83
|
+
<!ENTITY Iacute "Í" ><!--LATIN CAPITAL LETTER I WITH ACUTE -->
|
|
84
|
+
<!ENTITY icirc "î" ><!--LATIN SMALL LETTER I WITH CIRCUMFLEX -->
|
|
85
|
+
<!ENTITY Icirc "Î" ><!--LATIN CAPITAL LETTER I WITH CIRCUMFLEX -->
|
|
86
|
+
<!ENTITY igrave "ì" ><!--LATIN SMALL LETTER I WITH GRAVE -->
|
|
87
|
+
<!ENTITY Igrave "Ì" ><!--LATIN CAPITAL LETTER I WITH GRAVE -->
|
|
88
|
+
<!ENTITY iuml "ï" ><!--LATIN SMALL LETTER I WITH DIAERESIS -->
|
|
89
|
+
<!ENTITY Iuml "Ï" ><!--LATIN CAPITAL LETTER I WITH DIAERESIS -->
|
|
90
|
+
<!ENTITY ntilde "ñ" ><!--LATIN SMALL LETTER N WITH TILDE -->
|
|
91
|
+
<!ENTITY Ntilde "Ñ" ><!--LATIN CAPITAL LETTER N WITH TILDE -->
|
|
92
|
+
<!ENTITY oacute "ó" ><!--LATIN SMALL LETTER O WITH ACUTE -->
|
|
93
|
+
<!ENTITY Oacute "Ó" ><!--LATIN CAPITAL LETTER O WITH ACUTE -->
|
|
94
|
+
<!ENTITY ocirc "ô" ><!--LATIN SMALL LETTER O WITH CIRCUMFLEX -->
|
|
95
|
+
<!ENTITY Ocirc "Ô" ><!--LATIN CAPITAL LETTER O WITH CIRCUMFLEX -->
|
|
96
|
+
<!ENTITY ograve "ò" ><!--LATIN SMALL LETTER O WITH GRAVE -->
|
|
97
|
+
<!ENTITY Ograve "Ò" ><!--LATIN CAPITAL LETTER O WITH GRAVE -->
|
|
98
|
+
<!ENTITY oslash "ø" ><!--LATIN SMALL LETTER O WITH STROKE -->
|
|
99
|
+
<!ENTITY Oslash "Ø" ><!--LATIN CAPITAL LETTER O WITH STROKE -->
|
|
100
|
+
<!ENTITY otilde "õ" ><!--LATIN SMALL LETTER O WITH TILDE -->
|
|
101
|
+
<!ENTITY Otilde "Õ" ><!--LATIN CAPITAL LETTER O WITH TILDE -->
|
|
102
|
+
<!ENTITY ouml "ö" ><!--LATIN SMALL LETTER O WITH DIAERESIS -->
|
|
103
|
+
<!ENTITY Ouml "Ö" ><!--LATIN CAPITAL LETTER O WITH DIAERESIS -->
|
|
104
|
+
<!ENTITY szlig "ß" ><!--LATIN SMALL LETTER SHARP S -->
|
|
105
|
+
<!ENTITY thorn "þ" ><!--LATIN SMALL LETTER THORN -->
|
|
106
|
+
<!ENTITY THORN "Þ" ><!--LATIN CAPITAL LETTER THORN -->
|
|
107
|
+
<!ENTITY uacute "ú" ><!--LATIN SMALL LETTER U WITH ACUTE -->
|
|
108
|
+
<!ENTITY Uacute "Ú" ><!--LATIN CAPITAL LETTER U WITH ACUTE -->
|
|
109
|
+
<!ENTITY ucirc "û" ><!--LATIN SMALL LETTER U WITH CIRCUMFLEX -->
|
|
110
|
+
<!ENTITY Ucirc "Û" ><!--LATIN CAPITAL LETTER U WITH CIRCUMFLEX -->
|
|
111
|
+
<!ENTITY ugrave "ù" ><!--LATIN SMALL LETTER U WITH GRAVE -->
|
|
112
|
+
<!ENTITY Ugrave "Ù" ><!--LATIN CAPITAL LETTER U WITH GRAVE -->
|
|
113
|
+
<!ENTITY uuml "ü" ><!--LATIN SMALL LETTER U WITH DIAERESIS -->
|
|
114
|
+
<!ENTITY Uuml "Ü" ><!--LATIN CAPITAL LETTER U WITH DIAERESIS -->
|
|
115
|
+
<!ENTITY yacute "ý" ><!--LATIN SMALL LETTER Y WITH ACUTE -->
|
|
116
|
+
<!ENTITY Yacute "Ý" ><!--LATIN CAPITAL LETTER Y WITH ACUTE -->
|
|
117
|
+
<!ENTITY yuml "ÿ" ><!--LATIN SMALL LETTER Y WITH DIAERESIS -->
|