CETEIcean 1.9.3 → 1.9.4
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/package.json +9 -10
- package/rollup.config.js +9 -8
- package/src/CETEI.js +19 -6
- package/src/defaultBehaviors.js +1 -1
- package/src/utilities.js +2 -2
- package/tutorial_en/README.md +15 -2
- package/.vscode/settings.json +0 -6
- package/TEI-CE_specification.md +0 -86
- package/dist/CETEI.js +0 -1
- package/test/P5.css +0 -362
- package/test/tcw20.html +0 -960
- package/test/tcw22.xml +0 -468
- package/tutorial_es/Ruy_Diaz-La_Argentina_Manuscrita.tei.xml +0 -11579
- package/xslt/make-CETEIcean-3.xsl +0 -79
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "CETEIcean",
|
3
|
-
"version": "1.9.
|
3
|
+
"version": "1.9.4",
|
4
4
|
"description": "JavaScript library to load a TEI XML document and register it as HTML5 custom elements.",
|
5
5
|
"main": "src/CETEI.js",
|
6
6
|
"type": "module",
|
@@ -21,16 +21,15 @@
|
|
21
21
|
"./utilities.js": "./src/utilities.js"
|
22
22
|
},
|
23
23
|
"devDependencies": {
|
24
|
-
"@babel/core": "^7.
|
25
|
-
"@babel/preset-env": "7.
|
26
|
-
"@rollup/plugin-babel": "^
|
27
|
-
"
|
24
|
+
"@babel/core": "^7.26.9",
|
25
|
+
"@babel/preset-env": "^7.26.9",
|
26
|
+
"@rollup/plugin-babel": "^6.0.4",
|
27
|
+
"@rollup/plugin-terser": "^0.4.4",
|
28
28
|
"http-server": "^14.1.1",
|
29
|
-
"jsdom": "^
|
30
|
-
"onchange": "^
|
31
|
-
"rollup": "^
|
32
|
-
"
|
33
|
-
"terser": "^5.14.2"
|
29
|
+
"jsdom": "^26.0.0",
|
30
|
+
"onchange": "^7.1.0",
|
31
|
+
"rollup": "^4.34.8",
|
32
|
+
"terser": "^5.39.0"
|
34
33
|
},
|
35
34
|
"scripts": {
|
36
35
|
"build": "npm test && rollup -c rollup.config.js",
|
package/rollup.config.js
CHANGED
@@ -1,18 +1,19 @@
|
|
1
|
-
import babel from
|
2
|
-
import
|
1
|
+
import babel from "@rollup/plugin-babel";
|
2
|
+
import terser from "@rollup/plugin-terser";
|
3
3
|
|
4
4
|
export default {
|
5
|
-
input:
|
5
|
+
input: "src/CETEI.js",
|
6
6
|
output: {
|
7
|
-
file:
|
8
|
-
format:
|
9
|
-
name:
|
7
|
+
file: "dist/CETEI.js",
|
8
|
+
format: "iife",
|
9
|
+
name: "CETEI",
|
10
10
|
sourcemap: false,
|
11
11
|
},
|
12
12
|
plugins: [
|
13
|
-
babel({exclude:
|
13
|
+
babel({exclude: "node_modules/**",
|
14
|
+
"babelHelpers": "bundled",
|
14
15
|
"presets": [
|
15
|
-
["env", {
|
16
|
+
["@babel/env", {
|
16
17
|
"modules": false,
|
17
18
|
"targets": {
|
18
19
|
"chrome": 65,
|
package/src/CETEI.js
CHANGED
@@ -138,12 +138,25 @@ class CETEI {
|
|
138
138
|
newElement.setAttribute("data-empty", "");
|
139
139
|
}
|
140
140
|
// <head> elements need to know their level
|
141
|
-
if (el.localName == "head") {
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
141
|
+
if (el.localName == "head" && el.namespaceURI == "http://www.tei-c.org/ns/1.0") {
|
142
|
+
function getLevel(el) {
|
143
|
+
let count = 0;
|
144
|
+
let ancestor = el.parentElement;
|
145
|
+
while (ancestor) {
|
146
|
+
let children = ancestor.children;
|
147
|
+
let i = 0;
|
148
|
+
while (i < children.length) {
|
149
|
+
if (children[i].tagName.toLowerCase() === "head" && children[i].namespaceURI === "http://www.tei-c.org/ns/1.0") {
|
150
|
+
count++;
|
151
|
+
break; // Only count once
|
152
|
+
}
|
153
|
+
i++;
|
154
|
+
}
|
155
|
+
ancestor = ancestor.parentElement; // Move to the next ancestor
|
156
|
+
}
|
157
|
+
return count;
|
158
|
+
}
|
159
|
+
newElement.setAttribute("data-level", getLevel(el));
|
147
160
|
}
|
148
161
|
// Turn <rendition scheme="css"> elements into HTML styles
|
149
162
|
if (el.localName == "tagsDecl") {
|
package/src/defaultBehaviors.js
CHANGED
@@ -16,7 +16,7 @@ export default {
|
|
16
16
|
],
|
17
17
|
// creates an img tag with the @url as the src attribute
|
18
18
|
"graphic": function(elt) {
|
19
|
-
let content =
|
19
|
+
let content = elt.ownerDocument.createElement("img");
|
20
20
|
content.src = this.rw(elt.getAttribute("url"));
|
21
21
|
if (elt.hasAttribute("width")) {
|
22
22
|
content.setAttribute("width",elt.getAttribute("width"));
|
package/src/utilities.js
CHANGED
@@ -144,8 +144,8 @@ export function getPrefixDef(prefix) {
|
|
144
144
|
HTML document
|
145
145
|
*/
|
146
146
|
export function rw(url) {
|
147
|
-
if (!url.match(/^(?:http|mailto|file|\/|#).*$/)) {
|
148
|
-
return this.base + first(url);
|
147
|
+
if (!url.trim().match(/^(?:http|mailto|file|\/|#).*$/)) {
|
148
|
+
return this.base + first(url.trim());
|
149
149
|
} else {
|
150
150
|
return url;
|
151
151
|
}
|
package/tutorial_en/README.md
CHANGED
@@ -130,7 +130,7 @@ tei-lb:before {
|
|
130
130
|
content: "\A";
|
131
131
|
}
|
132
132
|
```
|
133
|
-
This tells the browser to insert a new-line character (the "\A") before each `<tei-lb>` and to treat it as preformatted text (as you would a block of code, for example). We have to do this because in HTML new lines are normally ignored for formatting purposes. There's more we can do with CSS, but this is a good point to look at where you might use CETEIcean behaviors for formatting instead. HTML has an element equivalent to `<lb/>`, the `<br>` element. What if we just put a `<br>` inside our `<tei-lb>`? We can do that by adding some behaviors. In your index.html, add the following after
|
133
|
+
This tells the browser to insert a new-line character (the "\A") before each `<tei-lb>` and to treat it as preformatted text (as you would a block of code, for example). We have to do this because in HTML new lines are normally ignored for formatting purposes. There's more we can do with CSS, but this is a good point to look at where you might use CETEIcean behaviors for formatting instead. HTML has an element equivalent to `<lb/>`, the `<br>` element. What if we just put a `<br>` inside our `<tei-lb>`? We can do that by adding some behaviors. In your index.html, add the following after the first line of the code in the `<script></script>` tags:
|
134
134
|
```js
|
135
135
|
let behaviors = {
|
136
136
|
"tei": {
|
@@ -139,7 +139,20 @@ This tells the browser to insert a new-line character (the "\A") before each `<t
|
|
139
139
|
};
|
140
140
|
c.addBehaviors(behaviors);
|
141
141
|
```
|
142
|
-
|
142
|
+
The code should now look like this:
|
143
|
+
```js
|
144
|
+
let c = new CETEI();
|
145
|
+
let behaviors = {
|
146
|
+
"tei": {
|
147
|
+
"lb": ["<br>"],
|
148
|
+
}
|
149
|
+
};
|
150
|
+
c.addBehaviors(behaviors);
|
151
|
+
c.getHTML5('fpn-washington.xml', function(data) {
|
152
|
+
document.getElementsByTagName("body")[0].appendChild(data);
|
153
|
+
});
|
154
|
+
```
|
155
|
+
This new code will create a Javascript object and assign it to a variable, `behaviors`, which we then pass to the `CETEI` object we created earlier, using the `addBehaviors` method. Inside that behaviors object, we have a section labeled "tei" (which is the prefix for all of our Custom Elements), and inside that, we define behaviors for elements. When CETEIcean sees a match for an element name, like "lb" (note that it uses the un-prefixed TEI name), it applies what it finds. For "lb", it sees an Array with one element, `<br>`, so it will insert that `<br>` tag before the content of any `<tei-lb>` element it finds. `<tei-lb>` is an empty element anyway, so the final result as seen by the browser will be
|
143
156
|
```html
|
144
157
|
<tei-lb><br></tei-lb>
|
145
158
|
```
|
package/.vscode/settings.json
DELETED
package/TEI-CE_specification.md
DELETED
@@ -1,86 +0,0 @@
|
|
1
|
-
# TEI Custom Elements Specification and Contract
|
2
|
-
|
3
|
-
When CETEIcean processes a TEI document, the document structures will by default be converted as follows:
|
4
|
-
|
5
|
-
## Elements
|
6
|
-
|
7
|
-
All tag names will be converted into [prefix]-[lowercased tagname]. The prefix can be defined in a behaviors object. There must be one prefix defined per XML namespace. There are three predefined prefixes:
|
8
|
-
|
9
|
-
```js
|
10
|
-
"namespaces": {
|
11
|
-
"tei": "http://www.tei-c.org/ns/1.0",
|
12
|
-
"teieg": "http://www.tei-c.org/ns/Examples",
|
13
|
-
"rng": "http://relaxng.org/ns/structure/1.0"
|
14
|
-
}
|
15
|
-
```
|
16
|
-
|
17
|
-
These prefixes can be remapped in the behaviors object passed to CETEIcean.
|
18
|
-
|
19
|
-
### CETEIcean-created Elements
|
20
|
-
|
21
|
-
CETEIcean may add the following elements to markup it processes:
|
22
|
-
|
23
|
-
* `<cetei-content>`: holds any content returned from a behavior function call.
|
24
|
-
* `<cetei-original`: wraps any original content that has been hidden and replaced by the result of a behavior function call.
|
25
|
-
|
26
|
-
## Attributes
|
27
|
-
|
28
|
-
CETEIcean adds a number of data attributes when it processes an XML element:
|
29
|
-
|
30
|
-
* `@data-origname`: contains the original tag name with whatever upper- or lowercasing it used. The HTML DOM normalizes tag names to uppercase.
|
31
|
-
* `@data-origatts`: contains a list of attribute names on the element before it was processed with whatever upper- or lowercasing they used. The HTML DOM normalizes attribute names to lowercase.
|
32
|
-
* `@data-processed`: a flag CETEIcean uses to determine whether elements have had behaviors applied. Normally, this will happen upon insertion into the browser DOM.
|
33
|
-
* `@data-empty`: a flag CETEIcean uses to mark empty elements (these may not remain empty after behaviors have been applied).
|
34
|
-
|
35
|
-
### Automatically Converted Attributes
|
36
|
-
|
37
|
-
* `@xml:id` is preserved and the value copied to `@id`.
|
38
|
-
* `@xml:lang` is preserved and the value copied to `@lang`.
|
39
|
-
* `@xmlns` is removed and its value copied to `@data-xmlns`.
|
40
|
-
* `@rendition` is preserved and its value copied to `@class`.
|
41
|
-
|
42
|
-
## Processing Instructions and Comments
|
43
|
-
|
44
|
-
PIs and comments are copied over into the result, so, for example, `<?xml-model?>` PIs pointing to a schema will be present before the root element of the converted document. The XML declaration, if present, is not a PI, and will not be copied over.
|
45
|
-
|
46
|
-
## Document Type Declarations
|
47
|
-
|
48
|
-
DTDs are not copied over into the result.
|
49
|
-
|
50
|
-
## Contract
|
51
|
-
|
52
|
-
If a source XML document has been processed into CETEIcean Custom Elements and is then re-serialized into XML using the `CETEI.utilities` instance method `resetAndSerialize()`, then the result will be logically equivalent to the source, provided that additional processing has not altered the document. Note that custom behaviors have direct access to the DOM, and thus are capable of directly manipulating the document in any way. No guarantees can be made as to the consistency of a serialized document if it has been rearranged, fo example.
|
53
|
-
|
54
|
-
This contract means that CETEIcean can be used in conjunction with in-browser editing or annotation tools to produce prospectively valid output XML.
|
55
|
-
|
56
|
-
For example, the built-in behavior for TEI `<ref>` is to create an HTML anchor tag with the content being the content of the `<ref>` and the `@href` attribute containing the pointer in the `@target` of the `<ref>` (or the first pointer if there are more than one). Given an element like
|
57
|
-
|
58
|
-
```xml
|
59
|
-
<ref target="https://github.com/TEIC/TEI/blob/dev/P5/Source/guidelines-en.xml" mimeType="application/tei+xml">guidelines-en.xml</ref>
|
60
|
-
```
|
61
|
-
|
62
|
-
The structure CETEIcean creates will look like this:
|
63
|
-
|
64
|
-
```xml
|
65
|
-
<tei-ref target="https://github.com/TEIC/TEI/blob/dev/P5/Source/guidelines-en.xml" mimetype="application/tei+xml" data-origname="ref" data-origatts="target mimeType" data-processed="">
|
66
|
-
<cetei-original hidden="" data-original="">guidelines-en.xml</cetei-original>
|
67
|
-
<a href="https://github.com/TEIC/TEI/blob/dev/P5/Source/guidelines-en.xml">guidelines-en.xml</a>
|
68
|
-
</tei-ref>
|
69
|
-
```
|
70
|
-
|
71
|
-
If this element is loaded into a variable and then passed to the `CETEI.utilities.copyAndReset()` function, the result will be:
|
72
|
-
|
73
|
-
```xml
|
74
|
-
<tei-ref target="https://github.com/TEIC/TEI/blob/dev/P5/Source/guidelines-en.xml" mimetype="application/tei+xml" data-origname="ref" data-origatts="target mimeType">guidelines-en.xml</tei-ref>
|
75
|
-
```
|
76
|
-
|
77
|
-
that is, the element as it was after CETEIcean has loaded it, but before it was inserted into the document DOM and had behaviors applied to it.
|
78
|
-
|
79
|
-
If this result is then passed to the `CETEI.utilities.serialize()` function, the output is
|
80
|
-
|
81
|
-
```xml
|
82
|
-
<ref target="https://github.com/TEIC/TEI/blob/dev/P5/Source/guidelines-en.xml" mimeType="application/tei+xml">guidelines-en.xml</ref>
|
83
|
-
```
|
84
|
-
|
85
|
-
CETEIcean's contract means that
|
86
|
-
|
package/dist/CETEI.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
var CETEI=function(){"use strict";var e={namespaces:{tei:"http://www.tei-c.org/ns/1.0",teieg:"http://www.tei-c.org/ns/Examples",rng:"http://relaxng.org/ns/structure/1.0"},tei:{eg:["<pre>","</pre>"],ptr:['<a href="$rw@target">$@target</a>'],ref:[["[target]",['<a href="$rw@target">',"</a>"]]],graphic:function(e){let t=new Image;return t.src=this.rw(e.getAttribute("url")),e.hasAttribute("width")&&t.setAttribute("width",e.getAttribute("width")),e.hasAttribute("height")&&t.setAttribute("height",e.getAttribute("height")),t},list:[["[type=gloss]",function(e){const t=e.ownerDocument;let i=t.createElement("dl");for(let n of Array.from(e.children))if(1==n.nodeType){if("tei-label"==n.localName){let e=t.createElement("dt");e.innerHTML=n.innerHTML,i.appendChild(e)}if("tei-item"==n.localName){let e=t.createElement("dd");e.innerHTML=n.innerHTML,i.appendChild(e)}}return i}]],note:[["[place=end]",function(e){const t=e.ownerDocument;this.noteIndex?this.noteIndex++:this.noteIndex=1;let i="_note_"+this.noteIndex,n=t.createElement("a");n.setAttribute("id","src"+i),n.setAttribute("href","#"+i),n.innerHTML=this.noteIndex;let r=t.createElement("sup");r.appendChild(n);let s=t.querySelector("ol.notes");s||(s=t.createElement("ol"),s.setAttribute("class","notes"),this.dom.appendChild(s));let o=t.createElement("li");return o.id=i,o.innerHTML=e.innerHTML,s.appendChild(o),r}],["_",["(",")"]]],teiHeader:function(e){this.hideContent(e,!1)},title:[["tei-titlestmt>tei-title",function(e){const t=e.ownerDocument;let i=t.createElement("title");i.innerHTML=e.innerText,t.querySelector("head").appendChild(i)}]]},teieg:{egXML:function(e){const t=e.ownerDocument;let i=t.createElement("pre"),n=t.createElement("code");i.appendChild(n);let r=this.serialize(e,!0).replace(/</g,"<"),s=r.match(/^[\t ]+/);return s&&(r=r.replace(new RegExp("^"+s[0],"mg"),"")),n.innerHTML=r,i}}};function t(e){const t=e.ownerDocument;let i=e=>{let n;switch(e.nodeType){case 1:n=t.createElement(e.nodeName);break;case 9:n=t.implementation.createDocument();break;case 11:n=t.createDocumentFragment();break;default:n=e.cloneNode(!0)}if(e.attributes)for(let t of Array.from(e.attributes))"data-processed"!==t.name&&n.setAttribute(t.name,t.value);for(let t of Array.from(e.childNodes))if(1==t.nodeType){if(t.hasAttribute("data-original")){for(let e of Array.from(t.childNodes)){let t=n.appendChild(i(e));1===t.nodeType&&t.hasAttribute("data-origid")&&(t.setAttribute("id",t.getAttribute("data-origid")),t.removeAttribute("data-origid"))}return n}t.hasAttribute("data-origname")&&n.appendChild(i(t))}else n.appendChild(t.cloneNode());return n};return i(e)}function i(e){return e.replace(/ .*$/,"")}function n(e,t=!0){const i=e.ownerDocument;if(e.childNodes.length>0){let n=i.createElement("cetei-original");e.appendChild(n),n.setAttribute("hidden",""),n.setAttribute("data-original","");for(let t of Array.from(e.childNodes))if(t!==n){if(1===t.nodeType){t.setAttribute("data-processed","");for(let e of t.querySelectorAll("*"))e.setAttribute("data-processed","")}n.appendChild(e.removeChild(t))}if(t)for(let e of Array.from(n.querySelectorAll("*")))e.hasAttribute("id")&&(e.setAttribute("data-origid",e.getAttribute("id")),e.removeAttribute("id"))}}function r(e,t,i){let n="";const s=e=>!/[^\t\n\r ]/.test(e);if(9!==e.nodeType&&11!==e.nodeType||(n+='<?xml version="1.0" encoding="UTF-8"?>\n'),!t&&1==e.nodeType){n+="string"==typeof i&&""!==i?"\n"+i+"<":"<",n+=e.getAttribute("data-origname");let t=e.hasAttribute("data-origatts")?e.getAttribute("data-origatts").split(" "):[];for(let i of Array.from(e.attributes))i.name.startsWith("data-")||["id","lang","class"].includes(i.name)||(n+=" "+t.find((function(e){return e.toLowerCase()==i.name}))+'="'+i.value+'"'),"data-xmlns"==i.name&&(n+=' xmlns="'+i.value+'"');e.childNodes.length>0?n+=">":n+="/>"}for(let o of Array.from(e.childNodes))switch(o.nodeType){case 1:n+=r(o,!1,"string"==typeof i?i+" ":i);break;case 7:n+=`<?${o.nodeName} ${o.nodeValue}?>`,9!==e.nodeType&&11!==e.nodeType||(n+="\n");break;case 8:n+=`\x3c!--${o.nodeValue}--\x3e`,9!==e.nodeType&&11!==e.nodeType||(n+="\n");break;default:if(t&&s(o.nodeValue)&&(n+=o.nodeValue.replace(/^\s*\n/,"")),"string"==typeof i&&s(o.nodeValue))break;n+=o.nodeValue}return!t&&1==e.nodeType&&e.childNodes.length>0&&(n+="string"==typeof i?"\n"+i+"</":"</",n+=e.getAttribute("data-origname")+">"),9!==e.nodeType&&11!==e.nodeType||(n+="\n"),n}function s(e){return e.includes(":"),e.replace(/:/,"-").toLowerCase()}function o(e,t=null,i=!1){try{window.customElements.define(s(e),class extends HTMLElement{constructor(){super(),this.matches(":defined")||t&&(t.call(this),this.setAttribute("data-processed",""))}connectedCallback(){this.hasAttribute("data-processed")||t&&(t.call(this),this.setAttribute("data-processed",""))}})}catch(t){i&&(console.log(s(e)+" couldn't be registered or is already registered."),console.log(t))}}var a=Object.freeze({__proto__:null,getOrdinality:function(e,t){let i=1,n=e;for(;n&&null!==n.previousElementSibling&&(!t||n.previousElementSibling.localName==t)&&(i++,n=n.previousElementSibling,n.previousElementSibling););return i},copyAndReset:t,first:i,hideContent:n,normalizeURI:function(e){return this.rw(this.first(e))},repeat:function(e,t){let i="";for(let n=0;n<t;n++)i+=e;return i},resolveURI:function(e){let t=this.prefixDefs[e.substring(0,e.indexOf(":"))];return e.replace(new RegExp(t.matchPattern),t.replacementPattern)},getPrefixDef:function(e){return this.prefixDefs[e]},rw:function(e){return e.match(/^(?:http|mailto|file|\/|#).*$/)?e:this.base+i(e)},resetAndSerialize:function(e,i,n){return r(t(e),i,n)},serialize:r,serializeHTML:function e(t,i,n){let r="";const s=e=>!/[^\t\n\r ]/.test(e);if(!i&&1==t.nodeType){r+="string"==typeof n&&""!==n?"\n"+n+"<":"<",r+=t.nodeName;for(let e of Array.from(t.attributes))r+=" "+e.name+'="'+e.value+'"';r+=">"}for(let o of Array.from(t.childNodes))switch(o.nodeType){case 1:r+=e(o,!1,"string"==typeof n?n+" ":n);break;case 7:r+=`<?${o.nodeName} ${o.nodeValue}?>`,9!==t.nodeType&&11!==t.nodeType||(r+="\n");break;case 8:r+=`\x3c!--${o.nodeValue}--\x3e`,9!==t.nodeType&&11!==t.nodeType||(r+="\n");break;default:if(i&&s(o.nodeValue)&&(r+=o.nodeValue.replace(/^\s*\n/,"")),"string"==typeof n&&s(o.nodeValue))break;r+=o.nodeValue.replace(/</g,"<")}return["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"].includes(t.nodeName)||i||1!=t.nodeType||(r+="string"==typeof n?`\n${n}</`:"</",r+=`${t.nodeName}>`),9!==t.nodeType&&11!==t.nodeType||(r+="\n"),r},unEscapeEntities:function(e){return e.replace(/>/,">").replace(/"/,'"').replace(/'/,"'").replace(/&/,"&")},tagName:s,defineCustomElement:o});function l(e){if(e.namespaces)for(let t of Object.keys(e.namespaces))this.namespaces.has(e.namespaces[t])||Array.from(this.namespaces.values()).includes(t)||this.namespaces.set(e.namespaces[t],t);for(let t of this.namespaces.values())if(e[t])for(let i of Object.keys(e[t]))this.behaviors[`${t}:${i}`]=e[t][i];if(e.functions)for(let t of Object.keys(e.functions))this.utilities[t]=e.functions[t].bind(this.utilities);e.handlers&&console.log("Behavior handlers are no longer used."),e.fallbacks&&console.log("Fallback behaviors are no longer used.")}function d(e,t,i){let n;if(e===Object(e))for(let t of Object.keys(e))this.namespaces.has(e[t])||(this.namespaces.set(e[t],t),n=t);else n=e;this.behaviors[`${n}:${t}`]=i}function c(e,t){let i;if(e===Object(e))for(let t of Object.keys(e))this.namespaces.has(e[t])||(this.namespaces.set(e[t],t),i=t);else i=e;delete this.behaviors[`${i}:${t}`]}class h{constructor(t){this.options=t||{},this.document=this.options.documentObject?this.options.documentObject:void 0,void 0===this.document&&("undefined"!=typeof window&&window.document?this.document=window.document:"undefined"!=typeof global&&global.document&&(this.document=global.document)),this.addBehaviors=l.bind(this),this.addBehavior=d.bind(this),this.removeBehavior=c.bind(this),this.utilities={};for(const e of Object.keys(a))["getPrefixDef","rw","resolveURI"].includes(e)?this.utilities[e]=a[e].bind(this):this.utilities[e]=a[e];if(this.els=[],this.namespaces=new Map,this.behaviors={},this.hasStyle=!1,this.prefixDefs=[],this.debug=!0===this.options.debug,this.discardContent=!0===this.options.discardContent,this.options.base)this.base=this.options.base;else try{window&&(this.base=window.location.href.replace(/\/[^\/]*$/,"/"))}catch(e){this.base=""}this.options.omitDefaultBehaviors||this.addBehaviors(e),this.options.ignoreFragmentId&&window&&window.removeEventListener("ceteiceanload",h.restorePosition)}async getHTML5(e,t,i){window&&window.location.href.startsWith(this.base)&&e.indexOf("/")>=0&&(this.base=e.replace(/\/[^\/]*$/,"/"));try{const n=await fetch(e);if(n.ok){const e=await n.text();return this.makeHTML5(e,t,i)}console.log(`Could not get XML file ${e}.\nServer returned ${n.status}: ${n.statusText}`)}catch(e){console.log(e)}}makeHTML5(e,t,i){return this.XML_dom=(new DOMParser).parseFromString(e,"text/xml"),this.domToHTML5(this.XML_dom,t,i)}preprocess(e,t,i){this.els=function(e,t){const i=e.documentElement;let n=1,r=function(e){return t.has(e.namespaceURI?e.namespaceURI:"")||t.set(e.namespaceURI,"ns"+n++),t.get(e.namespaceURI?e.namespaceURI:"")+":"+e.localName};const s=new Set(Array.from(i.querySelectorAll("*"),r));return s.add(r(i)),s}(e,this.namespaces);let n=t=>{let r;if(this.namespaces.has(t.namespaceURI?t.namespaceURI:"")){let e=this.namespaces.get(t.namespaceURI?t.namespaceURI:"");r=this.document.createElement(`${e}-${t.localName.toLowerCase()}`)}else r=this.document.importNode(t,!1);for(let e of Array.from(t.attributes))"xmlns"==e.name?r.setAttribute("data-xmlns",e.value):r.setAttribute(e.name,e.value),"xml:id"==e.name&&r.setAttribute("id",e.value),"xml:lang"==e.name&&r.setAttribute("lang",e.value),"rendition"==e.name&&r.setAttribute("class",e.value.replace(/#/g,""));if(r.setAttribute("data-origname",t.localName),t.hasAttributes()&&r.setAttribute("data-origatts",t.getAttributeNames().join(" ")),0==t.childNodes.length&&r.setAttribute("data-empty",""),"head"==t.localName){let i=e.evaluate("count(ancestor::*[tei:head])",t,(function(e){if("tei"==e)return"http://www.tei-c.org/ns/1.0"}),1,null);r.setAttribute("data-level",i.numberValue)}if("tagsDecl"==t.localName){let e=this.document.createElement("style");for(let i of Array.from(t.childNodes))if(1==i.nodeType&&"rendition"==i.localName&&"css"==i.getAttribute("scheme")){let t="";i.hasAttribute("selector")?(t+=i.getAttribute("selector").replace(/([^#, >]+\w*)/g,"tei-$1").replace(/#tei-/g,"#")+"{\n",t+=i.textContent):(t+="."+i.getAttribute("xml:id")+"{\n",t+=i.textContent),t+="\n}\n",e.appendChild(this.document.createTextNode(t))}e.childNodes.length>0&&(r.appendChild(e),this.hasStyle=!0)}"prefixDef"==t.localName&&(this.prefixDefs.push(t.getAttribute("ident")),this.prefixDefs[t.getAttribute("ident")]={matchPattern:t.getAttribute("matchPattern"),replacementPattern:t.getAttribute("replacementPattern")});for(let e of Array.from(t.childNodes))1==e.nodeType?r.appendChild(n(e)):r.appendChild(e.cloneNode());return i&&i(r,t),r};this.dom=this.document.createDocumentFragment();for(let t of Array.from(e.childNodes))1==t.nodeType&&this.dom.appendChild(n(t)),7==t.nodeType&&this.dom.appendChild(this.document.importNode(t,!0)),8==t.nodeType&&this.dom.appendChild(this.document.importNode(t,!0));if(this.utilities.dom=this.dom.firstElementChild,!t)return"undefined"!=typeof window&&window.dispatchEvent(u),this.dom;t(this.dom,this),window&&window.dispatchEvent(u)}domToHTML5(e,t,i){if(this.preprocess(e,null,i),this.applyBehaviors(),this.done=!0,!t)return"undefined"!=typeof window&&window.dispatchEvent(u),this.dom;t(this.dom,this),window&&window.dispatchEvent(u)}processPage(){var e;this.els=(e=this.document,new Set(Array.from(e.querySelectorAll("*[data-origname]"),(e=>e.localName.replace(/(\w+)-.+/,"$1:")+e.getAttribute("data-origname"))))),this.applyBehaviors(),window&&window.dispatchEvent(u)}unsetNamespace(e){this.namespaces.delete(e)}setBaseUrl(e){this.base=e}append(e,t){let i=this;if(!t||t.hasAttribute("data-processed"))return function(){if(!this.hasAttribute("data-processed")){let t=e.call(i.utilities,this);t&&i.appendBasic(this,t)}};{let n=e.call(i.utilities,t);n&&i.appendBasic(t,n)}}appendBasic(e,t){this.discardContent?e.innerHTML="":n(e,!0),e.appendChild(t)}bName(e){return e.tagName.substring(0,e.tagName.indexOf("-")).toLowerCase()+":"+e.getAttribute("data-origname")}childExists(e,t){return!(!e||e.nodeName!=t)||e&&e.nextElementSibling&&this.childExists(e.nextElementSibling,t)}decorator(e){if(Array.isArray(e)&&0==e.length)return function(e){};if(Array.isArray(e)&&!Array.isArray(e[0]))return this.applyDecorator(e);let t=this;return function(i){for(let n of e)if(i.matches(n[0])||"_"===n[0])return Array.isArray(n[1])?t.decorator(n[1]).call(this,i):n[1].call(this,i)}}applyDecorator(e){let t=this;return function(i){let n=[];for(let r=0;r<e.length;r++)n.push(t.template(e[r],i));return t.insert(i,n)}}getFallback(e,t){if(e[t])return e[t]instanceof Function?e[t]:this.decorator(e[t])}getHandler(e,t){if(e[t])return e[t]instanceof Function?this.append(e[t]):this.append(this.decorator(e[t]))}insert(e,t){let i=this.document.createElement("cetei-content");for(let t of Array.from(e.childNodes))1!==t.nodeType||t.hasAttribute("data-processed")||this.processElement(t);if(t[0].match("<[^>]+>")&&t[1]&&t[1].match("<[^>]+>"))i.innerHTML=t[0]+e.innerHTML+(t[1]?t[1]:"");else{i.innerHTML=t[0],i.setAttribute("data-before",t[0].replace(/<[^>]+>/g,"").length);for(let t of Array.from(e.childNodes))i.appendChild(t.cloneNode(!0));t.length>1&&(i.innerHTML+=t[1],i.setAttribute("data-after",t[1].replace(/<[^>]+>/g,"").length))}return i.childNodes.length<2?i.firstChild:i}processElement(e){if(e.hasAttribute("data-origname")&&!e.hasAttribute("data-processed")){let t=this.getFallback(this.bName(e));t&&(this.append(t,e),e.setAttribute("data-processed",""))}for(let t of Array.from(e.childNodes))1===t.nodeType&&this.processElement(t)}template(e,t){let i=e;if(e.search(/\$(\w*)(@([a-zA-Z:]+))/)){let n,r=/\$(\w*)@([a-zA-Z:]+)/g;for(;n=r.exec(e);)i=t.hasAttribute(n[2])?n[1]&&this.utilities[n[1]]?i.replace(n[0],this.utilities[n[1]](t.getAttribute(n[2]))):i.replace(n[0],t.getAttribute(n[2])):i.replace(n[0],"")}return i}applyBehaviors(){"undefined"!=typeof window&&window.customElements?this.define.call(this,this.els):this.fallback.call(this,this.els)}define(e){for(let t of e){o(t,this.getHandler(this.behaviors,t),this.debug)}}fallback(e){for(let t of e){let e=this.getFallback(this.behaviors,t);if(e)for(let i of Array.from((this.dom&&!this.done?this.dom:this.document).querySelectorAll(s(t))))i.hasAttribute("data-processed")||(this.append(e,i),i.setAttribute("data-processed",""))}}static savePosition(){window.sessionStorage.setItem(window.location+"-scroll",window.scrollY)}static restorePosition(){if(window.location.hash)setTimeout((function(){let e=this.document.querySelector(window.decodeURI(window.location.hash));e&&e.scrollIntoView()}),100);else{let e;(e=window.sessionStorage.getItem(window.location+"-scroll"))&&(window.sessionStorage.removeItem(window.location+"-scroll"),setTimeout((function(){window.scrollTo(0,e)}),100))}}}try{if("undefined"!=typeof window){window.CETEI=h,window.addEventListener("beforeunload",h.savePosition);var u=new Event("ceteiceanload");window.addEventListener("ceteiceanload",h.restorePosition)}}catch(e){console.log(e)}return h}();
|
package/test/P5.css
DELETED
@@ -1,362 +0,0 @@
|
|
1
|
-
tei-ab {
|
2
|
-
display:block;
|
3
|
-
}
|
4
|
-
tei-back {
|
5
|
-
display:block;
|
6
|
-
}
|
7
|
-
tei-body {
|
8
|
-
display: block;
|
9
|
-
}
|
10
|
-
tei-caption { display: block; }
|
11
|
-
tei-castitem {
|
12
|
-
display: list-item;
|
13
|
-
}
|
14
|
-
tei-castlist {
|
15
|
-
display: block;
|
16
|
-
}
|
17
|
-
tei-cell {
|
18
|
-
display: table-cell;
|
19
|
-
padding: 1px;
|
20
|
-
vertical-align: inherit;
|
21
|
-
}
|
22
|
-
tei-code {
|
23
|
-
font-family: monospace;
|
24
|
-
white-space:pre;
|
25
|
-
}
|
26
|
-
tei-colophon {
|
27
|
-
display: block;
|
28
|
-
}
|
29
|
-
tei-dateline {
|
30
|
-
display: block;
|
31
|
-
}
|
32
|
-
tei-del {
|
33
|
-
text-decoration: line-through;
|
34
|
-
}
|
35
|
-
tei-div, tei-div1, tei-div2, tei-div3, tei-div4, tei-div5, tei-div6, tei-div7, tei-divgen {
|
36
|
-
display:block;
|
37
|
-
margin:1em;
|
38
|
-
}
|
39
|
-
teieg-egxml {
|
40
|
-
display: block;
|
41
|
-
margin-block-start: 1em;
|
42
|
-
margin-block-end: 1em;
|
43
|
-
font-family: monospace;
|
44
|
-
white-space: pre;
|
45
|
-
}
|
46
|
-
tei-emph {
|
47
|
-
font-style: italic;
|
48
|
-
}
|
49
|
-
tei-figure {
|
50
|
-
display: block;
|
51
|
-
}
|
52
|
-
tei-floatingtext {
|
53
|
-
display: block;
|
54
|
-
}
|
55
|
-
tei-head {
|
56
|
-
display: block;
|
57
|
-
}
|
58
|
-
tei-hi[rend~="bold"] {
|
59
|
-
font-weight: bold;
|
60
|
-
}
|
61
|
-
tei-hi[rend~="italic"] {
|
62
|
-
font-style: italic;
|
63
|
-
}
|
64
|
-
tei-hi[rend~="underline"] {
|
65
|
-
text-decoration: underline;
|
66
|
-
}
|
67
|
-
tei-item {
|
68
|
-
display:list-item;
|
69
|
-
}
|
70
|
-
tei-l {
|
71
|
-
display:block;
|
72
|
-
}
|
73
|
-
tei-lg {
|
74
|
-
display:block;
|
75
|
-
}
|
76
|
-
tei-list {
|
77
|
-
display: block;
|
78
|
-
}
|
79
|
-
tei-list[rend="numbered"] {
|
80
|
-
list-style-type: decimal;
|
81
|
-
}
|
82
|
-
tei-list[rend="bulleted"] {
|
83
|
-
list-style-type: disc;
|
84
|
-
}
|
85
|
-
tei-listannotation {
|
86
|
-
display: block;
|
87
|
-
}
|
88
|
-
tei-listapp {
|
89
|
-
display: block;
|
90
|
-
}
|
91
|
-
tei-listapp > tei-app {
|
92
|
-
display: list-item;
|
93
|
-
}
|
94
|
-
tei-listbibl {
|
95
|
-
display: block;
|
96
|
-
}
|
97
|
-
tei-listbibl > tei-bibl {
|
98
|
-
display: list-item;
|
99
|
-
}
|
100
|
-
tei-listchange {
|
101
|
-
display: block;
|
102
|
-
}
|
103
|
-
|
104
|
-
tei-listevent {
|
105
|
-
display: block;
|
106
|
-
}
|
107
|
-
tei-listnym {
|
108
|
-
display: block;
|
109
|
-
}
|
110
|
-
tei-listobject {
|
111
|
-
display: block;
|
112
|
-
}
|
113
|
-
tei-listorg {
|
114
|
-
display: block;
|
115
|
-
}
|
116
|
-
tei-listperson {
|
117
|
-
display: block;
|
118
|
-
}
|
119
|
-
tei-listplace {
|
120
|
-
display: block;
|
121
|
-
}
|
122
|
-
tei-listref {
|
123
|
-
display: block;
|
124
|
-
}
|
125
|
-
tei-listwit {
|
126
|
-
display: block;
|
127
|
-
}
|
128
|
-
|
129
|
-
tei-p {
|
130
|
-
display: block;
|
131
|
-
}
|
132
|
-
tei-param { /* placeholder */ }
|
133
|
-
tei-paramlist { /* placeholder */ }
|
134
|
-
tei-paramspec { /* placeholder */ }
|
135
|
-
tei-particdesc { /* placeholder */ }
|
136
|
-
tei-path { /* placeholder */ }
|
137
|
-
tei-pause { /* placeholder */ }
|
138
|
-
tei-pb { /* placeholder */ }
|
139
|
-
tei-pc { /* placeholder */ }
|
140
|
-
tei-per { /* placeholder */ }
|
141
|
-
tei-performance { /* placeholder */ }
|
142
|
-
tei-persname { /* placeholder */ }
|
143
|
-
tei-person { /* placeholder */ }
|
144
|
-
tei-persona { /* placeholder */ }
|
145
|
-
tei-persongrp { /* placeholder */ }
|
146
|
-
tei-phr { /* placeholder */ }
|
147
|
-
tei-physdesc { /* placeholder */ }
|
148
|
-
tei-place { /* placeholder */ }
|
149
|
-
tei-placename { /* placeholder */ }
|
150
|
-
tei-population { /* placeholder */ }
|
151
|
-
tei-pos { /* placeholder */ }
|
152
|
-
tei-postbox { /* placeholder */ }
|
153
|
-
tei-postcode { /* placeholder */ }
|
154
|
-
tei-postscript { /* placeholder */ }
|
155
|
-
tei-precision { /* placeholder */ }
|
156
|
-
tei-pref { /* placeholder */ }
|
157
|
-
tei-prefixdef { /* placeholder */ }
|
158
|
-
tei-preparedness { /* placeholder */ }
|
159
|
-
tei-principal { /* placeholder */ }
|
160
|
-
tei-profiledesc { /* placeholder */ }
|
161
|
-
tei-projectdesc { /* placeholder */ }
|
162
|
-
tei-prologue { /* placeholder */ }
|
163
|
-
tei-pron { /* placeholder */ }
|
164
|
-
tei-provenance { /* placeholder */ }
|
165
|
-
tei-ptr { /* placeholder */ }
|
166
|
-
tei-publicationstmt { /* placeholder */ }
|
167
|
-
tei-publisher { /* placeholder */ }
|
168
|
-
tei-pubplace { /* placeholder */ }
|
169
|
-
tei-punctuation { /* placeholder */ }
|
170
|
-
tei-purpose { /* placeholder */ }
|
171
|
-
tei-q { /* placeholder */ }
|
172
|
-
tei-quotation { /* placeholder */ }
|
173
|
-
tei-quote { /* placeholder */ }
|
174
|
-
tei-rdg {
|
175
|
-
display: none;
|
176
|
-
}
|
177
|
-
tei-rdggrp { /* placeholder */ }
|
178
|
-
tei-re { /* placeholder */ }
|
179
|
-
tei-recordhist { /* placeholder */ }
|
180
|
-
tei-recording { /* placeholder */ }
|
181
|
-
tei-recordingstmt { /* placeholder */ }
|
182
|
-
tei-redo { /* placeholder */ }
|
183
|
-
tei-ref { /* placeholder */ }
|
184
|
-
tei-refsdecl { /* placeholder */ }
|
185
|
-
tei-refstate { /* placeholder */ }
|
186
|
-
tei-reg { /* placeholder */ }
|
187
|
-
tei-region { /* placeholder */ }
|
188
|
-
tei-relateditem { /* placeholder */ }
|
189
|
-
tei-relation { /* placeholder */ }
|
190
|
-
tei-remarks { /* placeholder */ }
|
191
|
-
tei-rendition { /* placeholder */ }
|
192
|
-
tei-repository { /* placeholder */ }
|
193
|
-
tei-residence { /* placeholder */ }
|
194
|
-
tei-resp { /* placeholder */ }
|
195
|
-
tei-respons { /* placeholder */ }
|
196
|
-
tei-respstmt { /* placeholder */ }
|
197
|
-
tei-restore { /* placeholder */ }
|
198
|
-
tei-retrace { /* placeholder */ }
|
199
|
-
tei-revisiondesc { /* placeholder */ }
|
200
|
-
tei-rhyme { /* placeholder */ }
|
201
|
-
tei-role { /* placeholder */ }
|
202
|
-
tei-roledesc { /* placeholder */ }
|
203
|
-
tei-rolename { /* placeholder */ }
|
204
|
-
tei-root { /* placeholder */ }
|
205
|
-
tei-row {
|
206
|
-
display: table-row;
|
207
|
-
border-color: inherit;
|
208
|
-
vertical-align: inherit;
|
209
|
-
}
|
210
|
-
tei-rs { /* placeholder */ }
|
211
|
-
tei-rubric { /* placeholder */ }
|
212
|
-
tei-s { /* placeholder */ }
|
213
|
-
tei-said { /* placeholder */ }
|
214
|
-
tei-salute { /* placeholder */ }
|
215
|
-
tei-samplingdecl { /* placeholder */ }
|
216
|
-
tei-schemaref { /* placeholder */ }
|
217
|
-
tei-schemaspec { /* placeholder */ }
|
218
|
-
tei-scriptdesc { /* placeholder */ }
|
219
|
-
tei-scriptnote { /* placeholder */ }
|
220
|
-
tei-scriptstmt { /* placeholder */ }
|
221
|
-
tei-seal { /* placeholder */ }
|
222
|
-
tei-sealdesc { /* placeholder */ }
|
223
|
-
tei-secfol { /* placeholder */ }
|
224
|
-
tei-secl { /* placeholder */ }
|
225
|
-
tei-seg { /* placeholder */ }
|
226
|
-
tei-segmentation { /* placeholder */ }
|
227
|
-
tei-sense { /* placeholder */ }
|
228
|
-
tei-sequence { /* placeholder */ }
|
229
|
-
tei-series { /* placeholder */ }
|
230
|
-
tei-seriesstmt { /* placeholder */ }
|
231
|
-
tei-set { /* placeholder */ }
|
232
|
-
tei-setting { /* placeholder */ }
|
233
|
-
tei-settingdesc { /* placeholder */ }
|
234
|
-
tei-settlement { /* placeholder */ }
|
235
|
-
tei-sex { /* placeholder */ }
|
236
|
-
tei-shift { /* placeholder */ }
|
237
|
-
tei-sic { /* placeholder */ }
|
238
|
-
tei-signatures { /* placeholder */ }
|
239
|
-
tei-signed { /* placeholder */ }
|
240
|
-
tei-socalled { /* placeholder */ }
|
241
|
-
tei-socecstatus { /* placeholder */ }
|
242
|
-
tei-sound { /* placeholder */ }
|
243
|
-
tei-source { /* placeholder */ }
|
244
|
-
tei-sourcedesc { /* placeholder */ }
|
245
|
-
tei-sourcedoc { /* placeholder */ }
|
246
|
-
tei-sp { /* placeholder */ }
|
247
|
-
tei-space { /* placeholder */ }
|
248
|
-
tei-span { /* placeholder */ }
|
249
|
-
tei-spangrp { /* placeholder */ }
|
250
|
-
tei-speaker { /* placeholder */ }
|
251
|
-
tei-specdesc { /* placeholder */ }
|
252
|
-
tei-specgrp { /* placeholder */ }
|
253
|
-
tei-specgrpref { /* placeholder */ }
|
254
|
-
tei-speclist { /* placeholder */ }
|
255
|
-
tei-spgrp { /* placeholder */ }
|
256
|
-
tei-sponsor { /* placeholder */ }
|
257
|
-
tei-stage { /* placeholder */ }
|
258
|
-
tei-stamp { /* placeholder */ }
|
259
|
-
tei-standoff {
|
260
|
-
display: none;
|
261
|
-
}
|
262
|
-
tei-state { /* placeholder */ }
|
263
|
-
tei-stdvals { /* placeholder */ }
|
264
|
-
tei-street { /* placeholder */ }
|
265
|
-
tei-stress { /* placeholder */ }
|
266
|
-
tei-string { /* placeholder */ }
|
267
|
-
tei-styledefdecl { /* placeholder */ }
|
268
|
-
tei-subc { /* placeholder */ }
|
269
|
-
tei-subst { /* placeholder */ }
|
270
|
-
tei-substjoin { /* placeholder */ }
|
271
|
-
tei-summary { /* placeholder */ }
|
272
|
-
tei-superentry { /* placeholder */ }
|
273
|
-
tei-supplied { /* placeholder */ }
|
274
|
-
tei-support { /* placeholder */ }
|
275
|
-
tei-supportdesc { /* placeholder */ }
|
276
|
-
tei-surface { /* placeholder */ }
|
277
|
-
tei-surfacegrp { /* placeholder */ }
|
278
|
-
tei-surname { /* placeholder */ }
|
279
|
-
tei-surplus { /* placeholder */ }
|
280
|
-
tei-surrogates { /* placeholder */ }
|
281
|
-
tei-syll { /* placeholder */ }
|
282
|
-
tei-symbol { /* placeholder */ }
|
283
|
-
tei-table {
|
284
|
-
display: table;
|
285
|
-
box-sizing: border-box;
|
286
|
-
border-spacing: 2px;
|
287
|
-
border-collapse: separate;
|
288
|
-
text-indent: initial;
|
289
|
-
}
|
290
|
-
tei-tag { /* placeholder */ }
|
291
|
-
tei-tagsdecl { /* placeholder */ }
|
292
|
-
tei-tagusage { /* placeholder */ }
|
293
|
-
tei-taxonomy { /* placeholder */ }
|
294
|
-
tei-tech { /* placeholder */ }
|
295
|
-
tei-tei { /* placeholder */ }
|
296
|
-
tei-teicorpus { /* placeholder */ }
|
297
|
-
tei-teiheader {
|
298
|
-
display: none;
|
299
|
-
}
|
300
|
-
tei-term { /* placeholder */ }
|
301
|
-
tei-terrain { /* placeholder */ }
|
302
|
-
tei-text { /* placeholder */ }
|
303
|
-
tei-textclass { /* placeholder */ }
|
304
|
-
tei-textdesc { /* placeholder */ }
|
305
|
-
tei-textlang { /* placeholder */ }
|
306
|
-
tei-textnode { /* placeholder */ }
|
307
|
-
tei-then { /* placeholder */ }
|
308
|
-
tei-time { /* placeholder */ }
|
309
|
-
tei-timeline { /* placeholder */ }
|
310
|
-
tei-title { /* placeholder */ }
|
311
|
-
tei-titlepage { /* placeholder */ }
|
312
|
-
tei-titlepart { /* placeholder */ }
|
313
|
-
tei-titlestmt { /* placeholder */ }
|
314
|
-
tei-tns { /* placeholder */ }
|
315
|
-
tei-trailer { /* placeholder */ }
|
316
|
-
tei-trait { /* placeholder */ }
|
317
|
-
tei-transcriptiondesc { /* placeholder */ }
|
318
|
-
tei-transpose { /* placeholder */ }
|
319
|
-
tei-tree { /* placeholder */ }
|
320
|
-
tei-triangle { /* placeholder */ }
|
321
|
-
tei-typedesc { /* placeholder */ }
|
322
|
-
tei-typenote { /* placeholder */ }
|
323
|
-
tei-u { /* placeholder */ }
|
324
|
-
tei-unclear { /* placeholder */ }
|
325
|
-
tei-undo { /* placeholder */ }
|
326
|
-
tei-unicodename { /* placeholder */ }
|
327
|
-
tei-unicodeprop { /* placeholder */ }
|
328
|
-
tei-unihanprop { /* placeholder */ }
|
329
|
-
tei-unit { /* placeholder */ }
|
330
|
-
tei-unitdecl { /* placeholder */ }
|
331
|
-
tei-unitdef { /* placeholder */ }
|
332
|
-
tei-usg { /* placeholder */ }
|
333
|
-
tei-val { /* placeholder */ }
|
334
|
-
tei-valdesc { /* placeholder */ }
|
335
|
-
tei-valitem { /* placeholder */ }
|
336
|
-
tei-vallist { /* placeholder */ }
|
337
|
-
tei-valt { /* placeholder */ }
|
338
|
-
tei-value { /* placeholder */ }
|
339
|
-
tei-variantencoding { /* placeholder */ }
|
340
|
-
tei-vcoll { /* placeholder */ }
|
341
|
-
tei-vdefault { /* placeholder */ }
|
342
|
-
tei-view { /* placeholder */ }
|
343
|
-
tei-vlabel { /* placeholder */ }
|
344
|
-
tei-vmerge { /* placeholder */ }
|
345
|
-
tei-vnot { /* placeholder */ }
|
346
|
-
tei-vocal { /* placeholder */ }
|
347
|
-
tei-vrange { /* placeholder */ }
|
348
|
-
tei-w { /* placeholder */ }
|
349
|
-
tei-watermark { /* placeholder */ }
|
350
|
-
tei-when { /* placeholder */ }
|
351
|
-
tei-width { /* placeholder */ }
|
352
|
-
tei-wit { /* placeholder */ }
|
353
|
-
tei-witdetail { /* placeholder */ }
|
354
|
-
tei-witend { /* placeholder */ }
|
355
|
-
tei-witness { /* placeholder */ }
|
356
|
-
tei-witstart { /* placeholder */ }
|
357
|
-
tei-writing { /* placeholder */ }
|
358
|
-
tei-xenodata {
|
359
|
-
display: none;
|
360
|
-
}
|
361
|
-
tei-xr { /* placeholder */ }
|
362
|
-
tei-zone { /* placeholder */ }
|