We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fe579f commit 1bbc7b9Copy full SHA for 1bbc7b9
docs/_config.yml
@@ -0,0 +1,3 @@
1
+theme: minima
2
+title: Gibberish Detector
3
+description: A simple tool to check if text is meaningful or gibberish.
docs/index.html
docs/index.md
@@ -0,0 +1,11 @@
+---
+layout: default
4
5
+
6
+<h1>Gibberish Detector</h1>
7
+<label for="userInput"></label><textarea id="userInput" rows="4" cols="50" placeholder="Enter text..."></textarea>
8
+<button onclick="runPython()">Check</button>
9
+<p>Score: <span id="result">-</span></p>
10
11
+<script src="script.js"></script>
0 commit comments