Skip to content

Commit 4fb3023

Browse files
Create index.html
1 parent a876931 commit 4fb3023

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

index.html

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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>Aura XLSL Web</title>
7+
<link rel="stylesheet" href="style.css">
8+
</head>
9+
<body>
10+
<h1>Aura XLSL Web Manager</h1>
11+
12+
<input type="file" accept=".xlsl" id="fileInput"><br><br>
13+
14+
<div id="sheetButtons"></div><br>
15+
16+
<textarea id="csvText" rows="6" cols="80" placeholder="CSV content..."></textarea><br><br>
17+
18+
<textarea id="mavenRegex" rows="4" cols="80" placeholder="Paste Maven %regex[...] excludes..."></textarea><br><br>
19+
20+
<input type="text" id="replaceWith" placeholder="Replacement text"><br><br>
21+
22+
<button id="highlightSheet">Highlight Sheet</button>
23+
<button id="replaceSheet">Replace Sheet</button>
24+
<button id="highlightAll">Highlight All Sheets</button>
25+
<button id="replaceAll">Replace All Sheets</button>
26+
<button id="exportMaster">Export Master CSV</button>
27+
<button id="saveXlsl">Save XLSL</button>
28+
29+
<h2>Highlighted CSV</h2>
30+
<div style="overflow-x:auto;">
31+
<table id="csvTable" border="1" cellpadding="4" style="border-collapse:collapse"></table>
32+
</div>
33+
34+
<script src="https://cdn.jsdelivr.net/npm/papaparse@5.4.1/papaparse.min.js"></script>
35+
<script src="xlsl-manager.js"></script>
36+
</body>
37+
</html>

0 commit comments

Comments
 (0)