Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
hadithmv committed Dec 14, 2024
1 parent 0ea3d12 commit 4e5f7e9
Showing 1 changed file with 123 additions and 100 deletions.
223 changes: 123 additions & 100 deletions page-uc/textEditor.html
Original file line number Diff line number Diff line change
Expand Up @@ -863,11 +863,134 @@
>
Reverse Text Vertically ↕️
</button>

<!-- -->

<hr class="dropdown-separator" />

<div class="converter-options">
<div class="option-group">
<label>Add line numbers with:</label>
<select id="addNumbersWith" class="converter-select">
<option value="" title="No separator">
No separator (1 Text)
</option>
<option value="." title="Dot">Dot (1. Text)</option>
<option value="-" title="Dash">Dash (1- Text)</option>
<option value="*" title="Asterisk">
Asterisk (1* Text)
</option>
<option value="/" title="Slash">Slash (1/ Text)</option>
<option value="+" title="Plus">Plus (1+ Text)</option>
<option value=":" title="Colon">Colon (1: Text)</option>
</select>
<button data-action="addLineNumbers" class="apply-button">
Add
</button>
</div>

<hr class="dropdown-separator" />

<!-- Add prefix/suffix section -->

<h4>Add or remove Prefix/Suffix for each line</h4>
<br />

<div class="option-group">
<label>Add prefix:</label>
<input
type="text"
id="addPrefixInput"
class="converter-select"
placeholder="add at start"
/>
</div>

<div class="option-group">
<label>Add suffix:</label>
<input
type="text"
id="addSuffixInput"
class="converter-select"
placeholder="add at end"
/>
</div>

<button data-action="addPrefixSuffix" class="apply-button">
Add
</button>

<hr class="dropdown-separator" />

<!-- Remove prefix/suffix section -->
<div class="option-group">
<label>Remove prefix:</label>
<input
type="text"
id="removePrefixInput"
class="converter-select"
placeholder="rmv from start"
/>
</div>

<div class="option-group">
<label>Remove suffix:</label>
<input
type="text"
id="removeSuffixInput"
class="converter-select"
placeholder="rmv from end"
/>
</div>

<button data-action="removePrefixSuffix" class="apply-button">
Remove
</button>

<hr class="dropdown-separator" />

<!-- Remove characters section -->
<div class="option-group">
<label>Remove no of characters from start:</label>
<input
type="number"
id="removeStartChars"
class="converter-select"
placeholder="Number of chars"
min="0"
value="0"
/>
</div>

<div class="option-group">
<label>Remove no of characters from end:</label>
<input
type="number"
id="removeEndChars"
class="converter-select"
placeholder="Number of chars"
min="0"
value="0"
/>
</div>

<button
data-action="removeCharsFromEnds"
class="apply-button"
>
Remove
</button>
</div>
<!-- -->
</div>
</div>

<!-- -->

<!-- -->

<!-- -->

<div class="dropdown-button">
<button
class="function-button"
Expand Down Expand Up @@ -2007,106 +2130,6 @@

<!-- -->

<div class="dropdown-button">
<button
class="function-button"
title="Add or remove prefix/suffix to each line"
>
Prefix/Suffix ➕
</button>
<div class="dropdown-content prefix-suffix">
<div class="converter-options">
<!-- Add prefix/suffix section -->
<div class="option-group">
<label>Add prefix:</label>
<input
type="text"
id="addPrefixInput"
class="converter-select"
placeholder="add at start"
/>
</div>

<div class="option-group">
<label>Add suffix:</label>
<input
type="text"
id="addSuffixInput"
class="converter-select"
placeholder="add at end"
/>
</div>

<button data-action="addPrefixSuffix" class="apply-button">
Add
</button>

<hr class="dropdown-separator" />

<!-- Remove prefix/suffix section -->
<div class="option-group">
<label>Remove prefix:</label>
<input
type="text"
id="removePrefixInput"
class="converter-select"
placeholder="rmv from start"
/>
</div>

<div class="option-group">
<label>Remove suffix:</label>
<input
type="text"
id="removeSuffixInput"
class="converter-select"
placeholder="rmv from end"
/>
</div>

<button data-action="removePrefixSuffix" class="apply-button">
Remove
</button>

<hr class="dropdown-separator" />

<!-- Remove characters section -->
<div class="option-group">
<label>Remove no of characters from start:</label>
<input
type="number"
id="removeStartChars"
class="converter-select"
placeholder="Number of chars"
min="0"
value="0"
/>
</div>

<div class="option-group">
<label>Remove no of characters from end:</label>
<input
type="number"
id="removeEndChars"
class="converter-select"
placeholder="Number of chars"
min="0"
value="0"
/>
</div>

<button
data-action="removeCharsFromEnds"
class="apply-button"
>
Remove
</button>
</div>
</div>
</div>

<!-- -->

<!-- !!!
📅 Days Since -->

Expand Down

0 comments on commit 4e5f7e9

Please sign in to comment.