This repository was archived by the owner on May 28, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (70 loc) · 1.7 KB
/
Copy pathindex.html
File metadata and controls
80 lines (70 loc) · 1.7 KB
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
<html lang="ja">
<head>
<meta charset="utf-8">
<title>DuckDB-Wasm (FTS Extension) + Lindera-Wasm-ipadic</title>
<style>
#query {
width: 500px;
height: 36px;
padding: 4px 8px;
font-size: 16px;
margin: 8px 0;
}
#run-query {
height: 36px;
padding: 4px 12px;
font-size: 16px;
margin: 8px 0;
}
#results {
padding: 0;
margin-top: 20px;
}
.result-item {
list-style: none;
margin-bottom: 20px;
padding: 15px;
border: 1px solid #ddd;
border-radius: 5px;
background-color: #f9f9f9;
}
.result-header {
display: flex;
gap: 15px;
margin-bottom: 12px;
}
.result-id,
.result-score {
font-size: 16px;
font-weight: bold;
color: #333;
background-color: #eee;
padding: 4px 10px;
border-radius: 4px;
}
.result-content {
font-size: 16px;
line-height: 1.5;
border-top: 1px solid #eee;
padding-top: 10px;
}
.no-results {
color: #666;
font-style: italic;
}
</style>
</head>
<body>
<h1>DuckDB-Wasm (FTS Extension) + Lindera-Wasm-ipadic</h2>
<h2>GitHub: <a
href="https://github.com/voluntas/duckdb-wasm-fts-lindera">https://github.com/voluntas/duckdb-wasm-fts-lindera</a>
</h2>
<h3 id="duckdb-version"></h3>
<h3 id="duckdb-wasm-version"></h3>
<h3 id="lindera-wasm-ipadic-version"></h3>
<input type="text" id="query" value="センシティブデータについて教えてください" disabled />
<button id="run-query" disabled>Run query</button>
<ul id="results"></ul>
<script type="module" src="./src/main.ts"></script>
</body>
</html>