-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (67 loc) · 2.37 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>tika-app</title>
<meta name="description" content="Polymer 3.0 app to extract text from documents and images with Apache Tika.">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="/manifest.json">
<!-- http2 push -->
<link rel="preload" href="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js" as="script">
<script>
if ('serviceWorker' in navigator) {
// Register a service worker hosted at the root of the
// site using the default scope.
navigator.serviceWorker.register('./sw.js').then(function(registration) {
console.log('Service worker registration succeeded:');
}).catch(function(error) {
console.log('Service worker registration failed:', error);
});
} else {
console.log('Service workers are not supported.');
}
</script>
<script src="/node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
<script type="module" src="/src/tika-app/tika-app.js"></script>
</head>
<body>
<style>
html {
font-family: sans-serif;
text-align: justify;
background-color: #eaeaea;
}
span.block {
font-style: italic;
font-weight: bolder;
padding: 1px;
}
.container {
max-width: 600px;
}
h1 {
color: #444;
font-size: 40px;
font-weight: lighter;
margin-bottom: 5px;
}
p {
color: #555;
}
</style>
<center>
<a href="https://github.com/PolymerVis/tika-app"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_green_007200.png" alt="Fork me on GitHub"></a>
<section class="container">
<h1>Tika-App</h1>
<p>allows you to extract text from sources such as,
<span class="block">Microsoft word documents</span>,
<span class="block">PDFs</span>, <span class="block">JPEG</span>,
and <span class="block"> PNG Images</span>
with <span class="block">Apache Tika<sup>TM</sup></span>.
</p>
<tika-app></tika-app>
</section>
</center>
</body>
</html>