Lorem
- dolor sit amet
- consectetur adipiscing
- sed do eiusmod tempor
<?xml version="1.0" encoding="UTF-8"?> | |
<?xml-model href="https://relaxng.org/relaxng.rng" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> | |
<!-- | |
To validate TEI documents against this schema, add this processing instruction | |
to the beginning of your TEI document (after the XML declaration): | |
<?xml-model href="http://localhost:3001/api/files/872ab" type="application/xml" schematypens="http://relaxng.org/ns/structure/1.0"?> | |
--> | |
<grammar xmlns="http://relaxng.org/ns/structure/1.0" | |
xmlns:xml="http://www.w3.org/XML/1998/namespace" | |
ns="http://www.tei-c.org/ns/1.0" |
/** | |
* patched version of https://www.npmjs.com/package/js-plugin | |
*/ | |
var _plugins = []; | |
var _byName = {}; | |
var _cache = {}; | |
// Only support debug mode on browser and node, not web workers. | |
var isBrowser = typeof window !== 'undefined' && typeof window.document !== 'undefined'; |
/** | |
* Displays Countdown clock | |
* Usage: <div class="countdown" style="--duration-seconds: 15;"></div> | |
*/ | |
@property --total-seconds-remaining { | |
syntax: "<number>"; | |
initial-value: 0; | |
inherits: true; | |
} |
<?xml version="1.0" ?> | |
<TEI xmlns="http://www.tei-c.org/ns/1.0"> | |
<teiHeader> | |
<fileDesc> | |
<titleStmt> | |
<title>10.1111_1467-6478.00057</title> | |
</titleStmt> | |
<publicationStmt> | |
<publisher>mpilhlt</publisher> | |
</publicationStmt> |
import os | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
from urllib.parse import urljoin, urlparse | |
import argparse | |
def download_resource(session, url, base_dir, level=0): | |
try: | |
response = session.get(url, stream=True) |
/* set the background image for all pages which have an (empty) <!-- .slide: data-background="" --> marker */ | |
/* create overlay with background image */ | |
.slide-background-content::before { | |
content: ""; | |
position: absolute; | |
top: 0; | |
left: 0; | |
right: 0; | |
bottom: 0; | |
background-image: url("image-url"); |
import dateparser | |
import re | |
import requests | |
from bs4 import BeautifulSoup | |
import csv | |
from collections import defaultdict | |
url = "https://easychair.org/smart-program/<conference_name>/program.html" | |
track_url = "https://easychair.org/smart-program/<conference_name>/de_tracks.html" | |
css_url = "https://easychair.org/smart-program/<conference_name>/program.css" |
// written with the help of ChatGPT4 | |
MATCH (n)-[r]->(m) | |
WITH DISTINCT labels(n) AS ln, type(r) AS rt, labels(m) AS lm | |
WITH "(" + apoc.text.join(ln, ":") + ")-[:" + rt + "]->(" + apoc.text.join(lm, ":") + ")" AS CypherPathExpression | |
RETURN apoc.text.join(COLLECT(CypherPathExpression), '\n') AS GraphDataModel |