1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-09-24 20:41:28 +02:00
Files
flexsearch/match.html
2025-03-17 08:35:27 +01:00

47 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Matching Comparison of Full-Text-Search Libraries (Fuzzy-Search)</title>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
background-color: #1a1e23;
color: #f0f6fc;
padding: 15px 10px;
}
table td{
padding: 1em 2em;
}
a{
color: #4493f8 !important;
}
</style>
</head>
<body>
<a href="https://github.com/nextapps-de/flexsearch">Return to Github</a>
<h2>Matching Comparison of Full-Text-Search Libraries (Fuzzy-Search)</h2>
<h4>Indexed Text: "Gulliver's Travels" (Swift Jonathan 1726)</h4>
<hr>
<div id="container">
<table>
<thead>
<tr style="font-weight: bold">
<td style="width: 200px">Query</td>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<hr>
<div style="line-height: 2em">
<div style="display:inline-block; width:16px; height:16px; background: #f00"></div> Either no results or relevant content was not included within the first 25 result entries.<br>
<div style="display:inline-block; width:16px; height:16px; background: orange"></div> Most relevant results was included but not found in the first place.<br>
<div style="display:inline-block; width:16px; height:16px; background: #0a0"></div> Most relevant results was successfully found in the first place.<br>
<b>Note:</b> Open console and type e.g. <i>data[493]</i>
</div>
<iframe id="iframe" hidden></iframe>
<script type="module" src="match.js"></script>
</body>
</html>