https://github.com/nafeu/joebe-generator
VanillaJS, HTML and CSS based copy pasta generator
https://github.com/nafeu/joebe-generator
Last synced: about 1 month ago
JSON representation
VanillaJS, HTML and CSS based copy pasta generator
- Host: GitHub
- URL: https://github.com/nafeu/joebe-generator
- Owner: nafeu
- License: mit
- Created: 2023-10-13T22:38:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-17T22:08:11.000Z (over 1 year ago)
- Last Synced: 2025-04-09T22:57:38.714Z (about 1 month ago)
- Language: JavaScript
- Size: 684 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Joebe Generator
Your #1 Source for Joebe content.

## Installation
```
git clone https://github.com/nafeu/joebe-generator.git
cd joebe-generator
```## Development
Use a local webserver of your choice:
```
python3 -m http.server
```or
```
browser-sync --watch
```## Contributing
### Adding more Joebe Quotes
Open the `data.js` file and examine the format
```javascript
const GENERATOR = [
{
text: `This is a quote by |PERSON|`
lookup: [
{
id: 'PERSON',
default: 'PersonA',
variations: ['PersonB', 'PersonC']
}
]
}
...
]
```- `text` is the base quote which includes IDs within pipe symbols (`|ID|`) for parts of the quote you want to create variations of
- `lookup` is a collection which maps the IDs to the default values and variations they can beAppend more objects of this format to the root `GENERATOR` variable to add them into the quote rotation.
## License
[MIT](https://choosealicense.com/licenses/mit/)