shakhovak commited on
Commit
e36eb69
1 Parent(s): dec9fa2

dict_added

Browse files
dictionaries/.gitattributes ADDED
@@ -0,0 +1 @@
 
 
1
+ *.json filter=lfs diff=lfs merge=lfs -text
dictionaries/accents.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:adb807918505efc4f2707e6536f52951e2be3bc3f714a7285fecdc7434c7f7b8
3
+ size 178733505
dictionaries/omographs.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:055502f1eb755ff7f1cd8831d7b44105dd0c190183f81312f209db35885d4ad6
3
+ size 1552979
templates/index.html ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>CutEggOFF</title>
7
+ </head>
8
+ <body>
9
+ <h1>Russian Language Accent</h1>
10
+ <form action="/process" method="post">
11
+ <label for="input_text">Input Text:</label><br>
12
+ <textarea id="input_text" name="input_text" rows="20" cols="200"></textarea><br><br>
13
+ <input type="submit" value="Process">
14
+ </form>
15
+ </body>
16
+ </html>
templates/result.html ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Processing Complete</title>
7
+ </head>
8
+ <body>
9
+ <h1>Processing Complete</h1>
10
+ <p>Download the processed files:</p>
11
+ <ul>
12
+ <li><a href="/download/accented_text.txt">Text with accents</a></li>
13
+ <li><a href="/download/omographs.txt">Omographs</a></li>
14
+ <li><a href="/download/unknown.txt">Unknown words</a></li>
15
+ </ul>
16
+ </body>
17
+ </html>