Gutenberg Block for generating listicles.
The basic concept of Listicles is to generate lists of content in a correct HTML way using <dl>
instead of <ol>
. By taking advantage of CSS counters, we're able to automagically increment the content by adding more and more items to the list.
It was originally created for use on LezWatch.TV.
This project is managed by the official WordPress create-block tool
Originally it used Create Guten Block but was ported over.
To use this project you will need Node.js and npm installed. If you don't already, please visit the Node.js download page and follow their directions.
git clone https://github.com/Ipstenu/listicles-gutenberg.git plugin-name
npm install
npm run build
That will install and build the JS and CSS needed to run the plugin.
The source code is located in /src/
- that's where most (if not all) of your work will happen.
index.js
- The main listicle file/js/listitem.js
- Individual list items (this is only usable inside the Listicles block)/js/listdt.js
- The list title/js/listdd.js
- The list content (this allows you to add as many sub blocks as you can)
The basic CSS can be found in /src/css/
.
Once you've made your changes you'll rebuild the plugin using the following commands:
$ npm start
- Starts the build for development.$ npm run build
- Builds the code for production.$ npm run format
- Formats files.$ npm run lint:css
- Lints CSS files.$ npm run lint:js
- Lints JavaScript files.$ npm run packages-update
- Updates WordPress packages to the latest version.
You may need to run npm update
in order to update the libraries before you update the packages.
This plugin exists on WordPress.org so you can install it by searching for Listicles.
This project is licensed under the GPLv2 (or Later) License - see the LICENSE.md file for details