Added visualization of sentences.

This commit is contained in:
2024-11-17 19:48:06 +01:00
parent fff44a99bd
commit 3a86f87ad9
61 changed files with 16907 additions and 288 deletions
+34
View File
@@ -0,0 +1,34 @@
var root = "/stark/static/js/annodoc/";
var webFontURLs = [
root + 'fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'fonts/Liberation_Sans-Regular.ttf'
];
head.js(
root + "js/ext/jquery.min.js",
root + "js/ext/jquery.svg.min.js",
root + "js/ext/jquery.svgdom.min.js",
root + "js/ext/jquery-ui.min.js",
root + "js/ext/waypoints.min.js",
root + "js/ext/webfont.js",
root + "js/ext/conllu.js/conllu.js",
root + "js/brat/configuration.js",
root + "js/brat/util.js",
root + "js/brat/annotation_log.js",
root + "js/brat/dispatcher.js",
root + "js/brat/url_monitor.js",
root + "js/brat/visualizer.js",
root + "js/local/annodoc.js",
root + "js/local/collections.js",
root + "js/local/config.js",
);
head.ready(function() {
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = ';'
// performs all embedding and support functions
console.log("Activating Annodoc");
Annodoc.activate(Config.bratCollData, Collections.listing);
console.log("Done activating Annodoc");
});