Contributions are welcome! Feel free to open an issue or submit a pull request if you have a way to improve this project.
Make sure your request is meaningful and you have tested the app locally before submitting a pull request.
This documentation contains a set of guidelines to help you during the contribution process.
You can refer to the following articles on the basics of Git and GitHub in case you are stuck:
- Forking a Repo
- Cloning a Repo
- How to create a Pull Request
- Getting started with Git and GitHub
- Learn GitHub from Scratch
git clone https://github.com/DenverCoder1/unicode-formatter.git
cd unicode-formatter
Open index.html
to run the project locally
You may use an extension such as Live Server for VS Code to enable helpful development features.
This project uses Prettier internally to keep the formatting consistent.
To install Prettier locally, make sure you have npm installed, and run:
npm install prettier
To format the code, run:
prettier --write "**/*.{md,css,js}"; prettier --write "**/*.html" --print-width 500
Note that the --print-width
option is used to prevent Prettier from breaking up the HTML code into multiple lines.