curly-octo-guacamole is a simple web-based tool that converts English text into a stylized format using Japanese-inspired characters. The tool replaces each letter in the English alphabet with a visually similar Japanese character, allowing for creative and fun text transformations.
- Real-time Conversion: As you type, the tool instantly converts the English characters to the predefined Japanese-style characters.
- Simple and Intuitive UI: The interface is straightforward, making it easy to use for anyone.
- Customizable Mapping: The character mappings can be easily modified or extended in the JavaScript file.
-
Clone the Repository:
git clone https://github.com/yourusername/curly-octo-guacamole.git
-
Navigate to the Project Directory:
cd curly-octo-guacamole
-
Open the
index.html
File: Simply open theindex.html
file in your favorite web browser to start using the tool. -
Type and Convert:
- Type your English text in the input area.
- Watch the converted text appear instantly in the output area.
If you want to customize the character mapping:
- Open the
script.js
file. - Modify the
conversionMap
object with your desired characters.
Example:
const conversionMap = {
'A': '卂', 'B': '乃', 'C': '匚', // and so on...
'a': '卂', 'b': '乃', 'c': '匚', // and so on...
// Add or modify characters as needed
};