-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
53 lines (49 loc) · 2.81 KB
/
main.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
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Фильтр для гласных</title>
<meta name="description" content="RU Vowels Filter">
<meta name="author" content="Roman 'Rioran' Voronov">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<meta property="og:title" content="RU Vowels Filter">
<meta property="og:type" content="website">
<meta property="og:url" content="https://rioran.github.io/ru-vowels-filter/main">
<meta property="og:description" content="RU Vowels Filter">
<meta property="og:image" content="images/og_image.png">
</head>
<body>
<div class="container-fluid x-5">
<div class="row pb-3" style="margin: auto">
<label class="m-3 h4 col-12" for="text_input">Введите текст:</label>
<textarea class="m-3 col" type="text" id="text_input" name="text_input" style="height: 30vh; width: 100%;" cols="100">Сменялись в детстве радугой дожди,
Сияньем солнца — сумрачные тени.
Но в зрелости не требуй и не жди
Таких простых и скорых утешений.
Самуил Яковлевич Маршак</textarea>
</div>
<div class="row align-items-center pb-3">
<button type="button" class="btn btn-primary col p-3 m-3 h4" onclick="filter_text(/[^аеёиоуэюяы\n]/gi);">
Оставить только гласные
</button>
<button type="button" class="btn btn-primary col p-3 m-3 h4" onclick="filter_text(/[^аеёиоуэюяы\n ]/gi);">
Ну и ещё пробелы
</button>
<button type="button" class="btn btn-primary col p-3 m-3 h4" onclick="filter_text(/[^аеёиоуэюяы\n \.\,\-\!\?]/gi);">
Оставить ещё и .,-!?
</button>
<button type="button" class="btn btn-success col p-3 m-3 h4" onclick="select_output();">
Выделить результат
</button>
</div>
<div class="row" style="margin: auto">
<div id="text_output" class="col text-wrap text-break m-3">
Здесь будет текст после фильтрации!
</div>
</div>
</div>
<script src="js/scripts.js"></script>
</body>
</html>