-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsdparse.html
129 lines (94 loc) · 3.41 KB
/
sdparse.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SD parse demo</title>
<meta name="viewport" content="width=device-width">
<!-- <meta name="description" content="description here"> -->
<link rel="root" href=""/> <!-- for JS -->
<link rel="canonical" href="https://ahumadao.github.io/sdparse.html">
<!-- Base jQuery-UI styles -->
<link rel="stylesheet" href="css/jquery-ui-redmond.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- CSS for embedded visualizations -->
<link rel="stylesheet" href="css/style-vis.css">
<!-- head.js, required for embedding -->
<script type="text/javascript" src="lib/ext/head.load.min.js"></script>
</head>
<body>
<header class="site-header">
<div class="wrap">
<a class="topnav" href="https://ahumadao.github.io"> Inicio </a>
<a class="topnav" href="https://ahumadao.github.io/reglas_generales" target="#">Reglas Generales</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_positivas">Reglas Positivas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_negativas">Reglas Negativas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_ortograficas">Reglas Ortográficas</a>
<a class="topnav" href="https://ahumadao.github.io/reglas_documento">Reglas Documento</a>
<span class="site-title-topnav">Annodoc</span>
</div>
</header>
<div class="page-content">
<div class="wrap">
<div class="entry">
<header class="entry-header">
<h1>SD parse demo</h1>
</header>
<article class="entry-content">
<div class="sd-parse" tabs="yes">
SD parse demo
nmod(demo, SD)
nmod(demo, parse)
</div>
<hr />
</article>
</div>
</div>
</div>
<footer class="site-footer">
<div class="wrap">
<p style="float:right"> Ricardo Ahumada, Pablo Báez. 2021 </p>
</div>
</footer>
</body>
<!-- support for embedded visualizations -->
<script type="text/javascript">
var root = ''; // filled in by jekyll
head.js(
// External libraries
root + 'lib/ext/jquery.min.js',
root + 'lib/ext/jquery.svg.min.js',
root + 'lib/ext/jquery.svgdom.min.js',
root + 'lib/ext/jquery-ui.min.js',
root + 'lib/ext/waypoints.min.js',
// brat helper modules
root + 'lib/brat/configuration.js',
root + 'lib/brat/util.js',
root + 'lib/brat/annotation_log.js',
root + 'lib/ext/webfont.js',
// brat main modules
root + 'lib/brat/dispatcher.js',
root + 'lib/brat/url_monitor.js',
root + 'lib/brat/visualizer.js',
// external parsing libraries
'https://spyysalo.github.io/conllu.js/conllu.js',
// annotation documentation support
root + 'lib/local/annodoc.js',
// project-specific collection data
root + 'lib/local/collections.js',
// project-specific configuration
root + 'lib/local/config.js'
);
var webFontURLs = [
root + 'static/fonts/PT_Sans-Caption-Web-Regular.ttf',
root + 'static/fonts/Liberation_Sans-Regular.ttf'
];
head.ready(function() {
// mark current collection (filled in by Jekyll)
Collections.listing['_current'] = '';
// performs all embedding and support functions
Annodoc.activate(Config.bratCollData, Collections.listing);
});
</script>
</html>