initial docs

This commit is contained in:
Ace
2023-06-03 15:53:45 +02:00
parent bceec6d1e7
commit 8a81cd5908
125 changed files with 13090 additions and 0 deletions

10
docsource/docs/_static/twemoji.js vendored Normal file
View File

@@ -0,0 +1,10 @@
function addEvent(element, eventName, fn) {
if (element.addEventListener)
element.addEventListener(eventName, fn, false);
else if (element.attachEvent)
element.attachEvent('on' + eventName, fn);
}
addEvent(window, 'load', function() {
twemoji.parse(document.body, {'folder': 'svg', 'ext': '.svg'});
});