Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
gherkins committed Feb 21, 2024
1 parent 3442030 commit 185da82
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 59 deletions.
63 changes: 17 additions & 46 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
# Getting Started with Create React App
# hANSI - simple text art editor

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
* Arrow keys: move cursor
* Number keys: write character in current block
* Spacebar: clear current block
* Backspace: clear previous block
* Tab: jump 4 blocks to the right

* <del>Shift + Arrow keys: select blocks</del>
* <del>Alt + Arrow keys: move selected block</del>
* <del>C: copy selected block</del>
* <del>X: cut selected block</del>
* <del>V: paste selected block</del>

--------------------------------------
---

## bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

Expand All @@ -14,11 +29,6 @@ Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
The page will reload when you make changes.\
You may also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.\
Expand All @@ -29,42 +39,3 @@ Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can't go back!**

If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.

You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `yarn build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
13 changes: 0 additions & 13 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,19 +191,6 @@ function App () {
})}
</div>)}
</div>
<div className="manual pt-4">
* Arrow keys: move cursor<br />
* Number keys: write character in current block<br />
* Spacebar: clear current block <br />
* Backspace: clear previous block<br />
* Tab: jump 4 blocks to the right<br />
<br />
* <del>Shift + Arrow keys: select blocks</del><br />
* <del>Alt + Arrow keys: move selected block</del><br />
* <del>C: copy selected block</del><br />
* <del>X: cut selected block</del><br />
* <del>V: paste selected block</del><br />
</div>
</div>
)
}
Expand Down

0 comments on commit 185da82

Please sign in to comment.