lindera-wasm 0.42.3

A morphological analysis library for WebAssembly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>Lindera WASM Example</title>
</head>

<body>
    <h1>Lindera WASM Example</h1>
    <textarea id="inputText" placeholder="Enter text to tokenized" rows="4" cols="50"></textarea>
    <button id="runButton">Tokenize</button>
    <ul id="resultList"></ul>
    <script src="bundle.js"></script>
</body>

</html>