73 lines
2.7 KiB
HTML
73 lines
2.7 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Zk | Pig-english: a code language for Latin</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<header>
|
|
<h1>Zk | Pig-english: a code language for Latin</h1>
|
|
</header>
|
|
<article class="content">
|
|
<p>Heh. Thanks to <lj user="alcarilinque"></lj> for the idea. I found it in his LJ after following a comment he left in a previous post on throat singing.</p>
|
|
<ul>
|
|
<li>Last and first syllables switched</li>
|
|
<li>Ait at beginning of sentence.</li>
|
|
<li>Alternate sic and tum between words</li>
|
|
<li>
|
|
<p>iam at end.</p>
|
|
</li>
|
|
<li>
|
|
<p>Poetic Rules apply (erunt -> ere, poetic plurals, &c. Elision gets ruined by sic/tum)</p>
|
|
</li>
|
|
<li>Add suffix -it to non-conjugated/declined words and conjugated/declined words of one syllable (don't switch last/first)</li>
|
|
<li>'Impossible' consonant clusters, insert y</li>
|
|
</ul>
|
|
<p>Quo usque tandem abutere, Catalina, patientia nostra? Quam diu etiam furor iste tuus nos eludet?
|
|
-->
|
|
Aitquo sic queus tum emdytamit sic rebutera, tum Atalinaca, sic atientipa tum rastynoiam? Aitquam sic udi tum amytie sic orfur tum teis sic ustu tum sic nosit tum etyludeiam?</p>
|
|
<p>It's like a steganographic artlang from Latin ^^ I'm a geek, but forgive me, I just took a history final. Now I truly am done with school :o</p>
|
|
<span class="control">Expand all</span>
|
|
</article>
|
|
<footer>
|
|
<p>Page generated on 2004-06-01 09:58:57</p>
|
|
</footer>
|
|
</main>
|
|
<script type="text/javascript">
|
|
document.querySelectorAll('li').forEach(el => {
|
|
if (el.querySelectorAll('li').length !== 0) {
|
|
el.classList.add('has-nested', 'closed');
|
|
el.innerHTML = `<span class="toggle"></span> ${el.innerHTML}`;
|
|
}
|
|
});
|
|
document.querySelectorAll('.toc .has-nested').forEach(el => {
|
|
el.classList.remove('has-nested', 'closed');
|
|
});
|
|
document.querySelectorAll('li.has-nested').forEach(el => {
|
|
el.querySelector('.toggle').addEventListener('click', () => {
|
|
el.classList.toggle('closed');
|
|
});
|
|
});
|
|
let expanded = false;
|
|
document.querySelector('.control').addEventListener('click', (e) => {
|
|
expanded = !expanded;
|
|
if (expanded) {
|
|
e.target.innerText = 'Collapse all';
|
|
} else {
|
|
e.target.innerText = 'Expand all';
|
|
}
|
|
document.querySelectorAll('.has-nested').forEach((el) => {
|
|
if (expanded) {
|
|
el.classList.remove('closed');
|
|
} else {
|
|
el.classList.add('closed')
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|