From 9ebc52e97e763f639b671dea89d8e8cfea199066 Mon Sep 17 00:00:00 2001 From: Keep Creating Online <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Sun, 28 Jul 2024 21:32:43 -0400 Subject: [PATCH] update --- README.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ src/index.html | 7 +++++++ 2 files changed, 53 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..7da60cb --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +# eCash Text Splitter for Meshtastic + +A simple web tool for splitting large strings of text into smaller segments of up to 200 characters each. This tool is designed to help with sending eCash over Meshtastic, allowing you to easily copy and transmit chunks of text. + +## Features + +- **Text Splitting**: Breaks down large text into smaller parts of up to 200 characters. +- **Copy Functionality**: Provides copy buttons for each text segment. +- **Offline Use**: Fully functional in any modern web browser without the need for an internet connection. +- **Live Version**: [Access the live version here](https://ecash-text-splitter.netlify.app/). + +## How to Use + +1. **Open the Tool**: Navigate to the live version of the tool [here](https://ecash-text-splitter.netlify.app/) or download the HTML file from this repository. +2. **Paste Your Text**: Enter your large eCash text into the provided textarea. +3. **Split the Text**: Click the "Split Text" button to divide your text into manageable chunks. +4. **Copy Chunks**: Use the "Copy" button next to each segment to copy the text to your clipboard. + +## Installation + +To run the tool locally: + +1. Clone the repository: + ```bash + git clone https://github.com/PR0M3TH3AN/text_splitter.git + ``` +2. Open the `index.html` file in your preferred web browser. + +## Contributing + +If you would like to contribute to this project, please follow these steps: + +1. Fork the repository. +2. Create a new branch (`git checkout -b feature-branch`). +3. Make your changes. +4. Commit your changes (`git commit -am 'Add new feature'`). +5. Push to the branch (`git push origin feature-branch`). +6. Open a pull request. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +## Contact + +For questions or comments, please open an issue on the [GitHub repository](https://github.com/PR0M3TH3AN/text_splitter). \ No newline at end of file diff --git a/src/index.html b/src/index.html index ce555ee..85b49dc 100644 --- a/src/index.html +++ b/src/index.html @@ -23,6 +23,9 @@ .copy-btn { margin-top: 5px; } + .repo-link { + margin-top: 20px; + } @@ -74,5 +77,9 @@ alert('Text copied to clipboard!'); } + +