Spaces:
Running
Running
File size: 2,490 Bytes
d9abb7e d9958c7 d9abb7e |
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 |
<!DOCTYPE html>
<html>
<head>
<title>Bubble Prompter</title>
<meta name="license" content="CC BY-NC 4.0" />
<meta name="author" content="pols" />
<meta name="attribution" content="pols" />
<link rel="attribution" href="https://huggingface.co/pols" />
<link rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/" />
<link rel="stylesheet" type="text/css" href="styles.css">
<link href='https://fonts.googleapis.com/css?family=Signika' rel='stylesheet'>
<meta charset="UTF-8">
</head>
<body>
<p style="text-align: center;">
<button id="replace-spaces-button" title="Divide text into bubbles
Replace ' ' with ', '" class="buttons">💔</button>
<button id="replace-underscore-button" title="Exile underscores from booru tags
Replace '_' with ' '" class="buttons">👻</button>
<button id="replace-linebreaks-button" title="Repair linebreaks" class="buttons">🔧</button>
<button id="replace-commas-button" title="Clean up orphan commas" class="buttons">🧼</button>
<button id="remove-duplicates-button" title="Merge duplicate bubbles" class="buttons">🧲</button>
<button id="revert-underscore-button"title="Recall underscores
Replace ' ' with '_'" class="buttons">🔮</button>
<button id="revert-spaces-button" title="Combine all
Replace ', ' with ' '" class="buttons">🩹</button>
<button id="copy-button" title="Copy text to clipboard" class="buttons">📋</button>
</p>
<div class="container">
<textarea id="input-text" placeholder="Write or paste your text here" class="text-container"></textarea>
<p style="text-align: center;">
<button id="undo-button" title="Undo" class="buttons">↩</button>
<button id="mitigate-mode-button" title="Mitigate Mode
Click on the bubbles to decrease the emphasis" class="buttons">🧊</button>
<button id="delete-mode-button" title="Delete Mode
Click on the bubbles to remove them" class="buttons delete-mode-button">🗑</button>
<button id="emphasis-mode-button" title="Emphasis Mode
Click on the bubbles to increase the emphasis" class="buttons">🔥</button>
<button id="redo-button" title="Redo" class="buttons">↪</button>
</p>
<div id="bubble-container"></div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Sortable/1.13.0/Sortable.min.js"></script>
<script src="script.js"></script>
</body>
</html> |