mirror of
https://github.com/PR0M3TH3AN/text_splitter.git
synced 2025-09-07 06:48:42 +00:00
update
This commit is contained in:
@@ -69,6 +69,9 @@
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
justify-content: space-around; /* Align links evenly */
|
||||
align-items: center;
|
||||
}
|
||||
nav a {
|
||||
color: #ffffff; /* Dark mode nav link color */
|
||||
@@ -86,7 +89,7 @@
|
||||
<a href="splitter.html">Splitter</a>
|
||||
<a href="reassemble.html">Reassembler</a>
|
||||
</nav>
|
||||
|
||||
|
||||
<h1>eCash Text Reassembler</h1>
|
||||
|
||||
<textarea id="firstMessage" placeholder="Paste the first message (with hash and total messages) here..."></textarea>
|
||||
|
@@ -69,6 +69,9 @@
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
justify-content: space-around; /* Align links evenly */
|
||||
align-items: center;
|
||||
}
|
||||
nav a {
|
||||
color: #ffffff; /* Dark mode nav link color */
|
||||
@@ -97,7 +100,7 @@
|
||||
|
||||
<script>
|
||||
function splitText() {
|
||||
const text = document.getElementById('inputText').value;
|
||||
const text = document.getElementById('inputText').value.trim();
|
||||
const maxChunkSize = 150;
|
||||
const chunks = [];
|
||||
|
||||
|
Reference in New Issue
Block a user