Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/darenmalfait/bionify
convert html and text into bionified text supporting bionic-reading
https://github.com/darenmalfait/bionify
Last synced: 8 days ago
JSON representation
convert html and text into bionified text supporting bionic-reading
- Host: GitHub
- URL: https://github.com/darenmalfait/bionify
- Owner: darenmalfait
- License: mit
- Created: 2022-10-18T06:32:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-17T09:36:08.000Z (over 1 year ago)
- Last Synced: 2024-10-31T17:55:03.411Z (2 months ago)
- Language: TypeScript
- Size: 366 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# `bionify`
## Install
```
npm install bionify
```## Usage
```js
function ModalDemo() {
const [bionified, setBionified] = React.useState(true)
const text = 'Bionic Reading is a new method facilitating the reading process by guiding the eyes through text with artificial fixation points. As a result, the reader is only focusing on the highlighted initial letters and lets the brain center complete the word. In a digital world dominated by shallow forms of reading, Bionic Reading aims to encourage a more in-depth reading and understanding of written content.
title in the meantime
Bionic Reading is a new method facilitating the reading process by guiding the eyes through text with artificial fixation points. As a result, the reader is only focusing on the highlighted initial letters and lets the brain center complete the word. In a digital world dominated by shallow forms of reading, Bionic Reading aims to encourage a more in-depth reading and understanding of written content.
';const html = bionified ? bionify(text) : text;
return (
Bionified
setBionified(checked)} value={bionified} />
)
}
```