-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.76 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Remove Comments - A Comment Remover For Almost Any Language</title>
<link rel="stylesheet" href="style.css" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1>Remove Comments - A Comment Remover For Almost Any Language</h1>
<div class="container">
<div style="flex: 1;">
<h3>Input Code</h3>
<textarea id="inputCode" placeholder="Paste your code here..."></textarea>
<h3>Output Code</h3>
<textarea id="outputCode" placeholder="Processed code will appear here..." readonly></textarea>
<button class="remove-btn" onclick="removeComments()">Remove Comments</button>
</div>
<div style="width: 300px;">
<h3>Configuration</h3>
<div class="config">
<label>Line Comment:</label>
<input id="lineComment" value="//">
<label>Escape Symbol:</label>
<input id="escapeSymbol" value="\">
<label>Block Comment Start:</label>
<input id="blockStart" value="/*">
<label>Block Comment End:</label>
<input id="blockEnd" value="*/">
<label>Trim Whitespace at End of Lines:</label>
<input type="checkbox" id="trimWhitespace" checked>
</div>
<div class="presets">
<h4>Presets:</h4>
</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>