Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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} />



)
}
```