diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index dfe0770..0000000 --- a/.gitattributes +++ /dev/null @@ -1,2 +0,0 @@ -# Auto detect text files and perform LF normalization -* text=auto diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 7ccab76..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,10 +0,0 @@ -github: [DenverCoder1] -patreon: -open_collective: -ko_fi: -tidelift: -community_bridge: -liberapay: -issuehunt: -otechie: -custom: diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml deleted file mode 100644 index 3de40dc..0000000 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: ๐ Bug -description: Submit a bug report to help us improve -title: '๐ Bug: ' -labels: ['bug'] -body: - - type: markdown - attributes: - value: Thanks for taking the time to fill out our bug report form ๐ - - type: textarea - id: description - attributes: - label: Description - description: A brief description of the bug. What happened? What did you expect to happen? - validations: - required: true - - type: textarea - id: steps - attributes: - label: Steps to reproduce - description: How do you trigger this bug? Please walk us through it step by step. - validations: - required: true - - type: textarea - id: screenshots - attributes: - label: Screenshots - description: Please add screenshots if applicable - validations: - required: false diff --git a/.github/ISSUE_TEMPLATE/doc.yml b/.github/ISSUE_TEMPLATE/doc.yml deleted file mode 100644 index 994c7f4..0000000 --- a/.github/ISSUE_TEMPLATE/doc.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: ๐ Documentation -description: Report an issue related to the documentation -title: '๐ Docs: ' -labels: ['documentation'] -body: - - type: markdown - attributes: - value: Thanks for taking the time to make our documentation better ๐ - - type: textarea - id: description - attributes: - label: Description - description: Description of the documentation issue - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml deleted file mode 100644 index 1f0c823..0000000 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: ๐ Feature Request -description: Submit a proposal for a new feature or enhancement -title: '๐ Feature: ' -labels: ['feature'] -body: - - type: markdown - attributes: - value: Thanks for taking the time to fill out our feature request form ๐ - - type: textarea - id: description - attributes: - label: Description - description: Description of the proposed feature or enhancement. Why should this be implemented? - validations: - required: true diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml deleted file mode 100644 index ee5c99e..0000000 --- a/.github/ISSUE_TEMPLATE/question.yml +++ /dev/null @@ -1,15 +0,0 @@ -name: โ Question -description: Ask a question about the project -title: 'โ Question: ' -labels: ['question'] -body: - - type: markdown - attributes: - value: Thanks for taking the time to ask a question! ๐ - - type: textarea - id: description - attributes: - label: Description - description: Description of the question. What would you like to know? - validations: - required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index c46ca81..0000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,21 +0,0 @@ -# Description - -Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. - -Fixes # (issue) - -## Type of change - -Please delete options that are not relevant. - -- [ ] Bug fix (non-breaking change which fixes an issue) -- [ ] New feature (non-breaking change which adds functionality) -- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) -- [ ] This change requires a documentation update - -# Checklist: - -- [ ] I have performed a self-review of my own code -- [ ] I have commented my code, particularly in hard-to-understand areas -- [ ] I have made corresponding changes to the documentation -- [ ] My changes generate no new warnings diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml deleted file mode 100644 index 2a25d2d..0000000 --- a/.github/workflows/gh-pages.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Deploy to GitHub Pages - -on: - push: - branches: - - main - paths: - - 'src/**' - - '.github/workflows/gh-pages.yml' - workflow_dispatch: - -permissions: - contents: write - -jobs: - deploy: - concurrency: ci-${{ github.ref }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Deploy - uses: JamesIves/github-pages-deploy-action@v4 - with: - branch: gh-pages - folder: src diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml deleted file mode 100644 index 4a0b133..0000000 --- a/.github/workflows/prettier.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: Format with Prettier - -on: - push: - branches: - - main - pull_request: - paths: - - "**.md" - - "**.html" - - "**.js" - - "**.css" - - ".github/workflows/prettier.yml" - -jobs: - prettier: - runs-on: ubuntu-latest - steps: - - name: Checkout Pull Request - if: ${{ github.event_name == 'pull_request' }} - uses: actions/checkout@v3 - with: - repository: ${{ github.event.pull_request.head.repo.full_name }} - ref: ${{ github.event.pull_request.head.ref }} - - - name: Checkout Push - if: ${{ github.event_name != 'pull_request' }} - uses: actions/checkout@v3 - - - name: Install prettier - run: npm install --global prettier - - - name: Check formatting with Prettier - continue-on-error: true - run: prettier --check "**/*.{md,css,js}"; prettier --check "**/*.html" --print-width 500 - - - name: Prettify code - run: prettier --write "**/*.{md,css,js}"; prettier --write "**/*.html" --print-width 500 - - - name: Commit changes - uses: EndBug/add-and-commit@v9 - with: - message: "style: Formatted code with Prettier" - default_author: github_actions diff --git a/.gitignore b/.gitignore deleted file mode 100644 index da8d1e2..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ - -.vscode/settings.json diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index 1d21a28..0000000 --- a/.prettierrc +++ /dev/null @@ -1,10 +0,0 @@ -{ - "useTabs": false, - "tabWidth": 2, - "semi": true, - "singleQuote": false, - "trailingComma": "es5", - "bracketSpacing": true, - "bracketSameLine": true, - "printWidth": 120 -} diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..8d31765 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +unicode-formatter.demolab.com \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md deleted file mode 100644 index 5b0076a..0000000 --- a/CODE_OF_CONDUCT.md +++ /dev/null @@ -1,128 +0,0 @@ -# Contributor Covenant Code of Conduct - -## Our Pledge - -We as members, contributors, and leaders pledge to make participation in our -community a harassment-free experience for everyone, regardless of age, body -size, visible or invisible disability, ethnicity, sex characteristics, gender -identity and expression, level of experience, education, socio-economic status, -nationality, personal appearance, race, religion, or sexual identity -and orientation. - -We pledge to act and interact in ways that contribute to an open, welcoming, -diverse, inclusive, and healthy community. - -## Our Standards - -Examples of behavior that contributes to a positive environment for our -community include: - -- Demonstrating empathy and kindness toward other people -- Being respectful of differing opinions, viewpoints, and experiences -- Giving and gracefully accepting constructive feedback -- Accepting responsibility and apologizing to those affected by our mistakes, - and learning from the experience -- Focusing on what is best not just for us as individuals, but for the - overall community - -Examples of unacceptable behavior include: - -- The use of sexualized language or imagery, and sexual attention or - advances of any kind -- Trolling, insulting or derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or email - address, without their explicit permission -- Other conduct which could reasonably be considered inappropriate in a - professional setting - -## Enforcement Responsibilities - -Community leaders are responsible for clarifying and enforcing our standards of -acceptable behavior and will take appropriate and fair corrective action in -response to any behavior that they deem inappropriate, threatening, offensive, -or harmful. - -Community leaders have the right and responsibility to remove, edit, or reject -comments, commits, code, wiki edits, issues, and other contributions that are -not aligned to this Code of Conduct, and will communicate reasons for moderation -decisions when appropriate. - -## Scope - -This Code of Conduct applies within all community spaces, and also applies when -an individual is officially representing the community in public spaces. -Examples of representing our community include using an official e-mail address, -posting via an official social media account, or acting as an appointed -representative at an online or offline event. - -## Enforcement - -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at -jonah@freshidea.com. -All complaints will be reviewed and investigated promptly and fairly. - -All community leaders are obligated to respect the privacy and security of the -reporter of any incident. - -## Enforcement Guidelines - -Community leaders will follow these Community Impact Guidelines in determining -the consequences for any action they deem in violation of this Code of Conduct: - -### 1. Correction - -**Community Impact**: Use of inappropriate language or other behavior deemed -unprofessional or unwelcome in the community. - -**Consequence**: A private, written warning from community leaders, providing -clarity around the nature of the violation and an explanation of why the -behavior was inappropriate. A public apology may be requested. - -### 2. Warning - -**Community Impact**: A violation through a single incident or series -of actions. - -**Consequence**: A warning with consequences for continued behavior. No -interaction with the people involved, including unsolicited interaction with -those enforcing the Code of Conduct, for a specified period of time. This -includes avoiding interactions in community spaces as well as external channels -like social media. Violating these terms may lead to a temporary or -permanent ban. - -### 3. Temporary Ban - -**Community Impact**: A serious violation of community standards, including -sustained inappropriate behavior. - -**Consequence**: A temporary ban from any sort of interaction or public -communication with the community for a specified period of time. No public or -private interaction with the people involved, including unsolicited interaction -with those enforcing the Code of Conduct, is allowed during this period. -Violating these terms may lead to a permanent ban. - -### 4. Permanent Ban - -**Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an -individual, or aggression toward or disparagement of classes of individuals. - -**Consequence**: A permanent ban from any sort of public interaction within -the community. - -## Attribution - -This Code of Conduct is adapted from the [Contributor Covenant][homepage], -version 2.0, available at -https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. - -Community Impact Guidelines were inspired by [Mozilla's code of conduct -enforcement ladder](https://github.com/mozilla/diversity). - -[homepage]: https://www.contributor-covenant.org - -For answers to common questions about this code of conduct, see the FAQ at -https://www.contributor-covenant.org/faq. Translations are available at -https://www.contributor-covenant.org/translations. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md deleted file mode 100644 index 9760225..0000000 --- a/CONTRIBUTING.md +++ /dev/null @@ -1,48 +0,0 @@ -## Contributing Guidelines - -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. - -### Need some help regarding the basics? - -You can refer to the following articles on the basics of Git and GitHub in case you are stuck: - -- [Forking a Repo](https://help.github.com/en/github/getting-started-with-github/fork-a-repo) -- [Cloning a Repo](https://help.github.com/en/desktop/contributing-to-projects/creating-an-issue-or-pull-request) -- [How to create a Pull Request](https://opensource.com/article/19/7/create-pull-request-github) -- [Getting started with Git and GitHub](https://towardsdatascience.com/getting-started-with-git-and-github-6fcd0f2d4ac6) -- [Learn GitHub from Scratch](https://lab.github.com/githubtraining/introduction-to-github) - -### Clone the repository - -``` -git clone https://github.com/DenverCoder1/unicode-formatter.git -cd unicode-formatter -``` - -### Running the app locally - -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. - -## Formatting - -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. diff --git a/LICENSE b/LICENSE deleted file mode 100644 index a9db056..0000000 --- a/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 DenverCoder1 - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/README.md b/README.md deleted file mode 100644 index 4b33f18..0000000 --- a/README.md +++ /dev/null @@ -1,107 +0,0 @@ -
- Format your Unicode text with ๐ฏ๐ผ๐น๐ฑ, ๐ช๐ต๐ข๐ญ๐ช๐ค๐ด, and ๐๐๐๐๐๐๐๐๐
-
- and make all kinds of ๐ฏ๐ช๐ท๐ฌ๐ ๐ฝ๐ฎ๐๐ฝ with Unicode fonts.
-
-
-
-