174 lines
7.7 KiB
Markdown
174 lines
7.7 KiB
Markdown
# footnotes
|
|
|
|
<!-- markdownlint-disable MD013 -->
|
|
![stable tag](https://img.shields.io/wordpress/plugin/v/footnotes?style=flat-square) ![WP rating](https://img.shields.io/wordpress/plugin/stars/footnotes?style=flat-square) ![Reqd PHP](https://img.shields.io/wordpress/plugin/required-php/footnotes?style=flat-square) ![Reqd WP](https://img.shields.io/wordpress/plugin/wp-version/footnotes?style=flat-square) ![WordPress Plugin: Tested WP Version](https://img.shields.io/wordpress/plugin/tested/footnotes?style=flat-square)
|
|
|
|
![GitHub contributors](https://img.shields.io/github/contributors/markcheret/footnotes?style=flat-square) ![GitHub commits since tagged version](https://img.shields.io/github/commits-since/markcheret/footnotes/2.7.0?style=flat-square) ![GitHub commit activity](https://img.shields.io/github/commit-activity/m/markcheret/footnotes?style=flat-square) ![issues](https://img.shields.io/github/issues/markcheret/footnotes?style=flat-square) ![PRs](https://img.shields.io/github/issues-pr/markcheret/footnotes?style=flat-square)
|
|
|
|
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0) ![Snyk Vulnerabilities for GitHub Repo](https://img.shields.io/snyk/vulnerabilities/github/markcheret/footnotes?style=flat-square) [![OSSAR](https://github.com/markcheret/footnotes/actions/workflows/ossar-analysis.yml/badge.svg)](https://github.com/markcheret/footnotes/actions/workflows/ossar-analysis.yml) [![Code Linting](https://github.com/markcheret/footnotes/actions/workflows/php.yml/badge.svg)](https://github.com/markcheret/footnotes/actions/workflows/lint-code.yml)
|
|
|
|
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
|
|
<!-- markdownlint-enable MD013 -->
|
|
|
|
![footnotes](https://raw.githubusercontent.com/markcheret/footnotes/main/.github/img/footnotes.png)
|
|
|
|
**footnotes** aims to be the all-in-one solution for displaying an
|
|
automatically-generated list of references on your Page or Post. The Plugin
|
|
ships with a set of defaults while also empowering you to control how your
|
|
footnotes will be displayed.
|
|
|
|
**footnotes** gives you the ability to display well-formatted footnotes on your
|
|
WordPress Pages and Posts — those footnotes we know from offline publishing.
|
|
|
|
Featured on [wpmudev][wpmudev] — cheers for the review, folks!
|
|
|
|
## Table of Contents
|
|
|
|
* [Features](#features)
|
|
* [Getting Started](#getting-started)
|
|
* [Deploying](#deploying)
|
|
* [Testing](#testing)
|
|
* [Code Formatting](#code-formatting)
|
|
* [Documentation](#documentation)
|
|
* [Acknowledgments](#acknowledgements)
|
|
* [License](#license)
|
|
* [Contact Information](#contact-information)
|
|
|
|
## Features
|
|
|
|
This Plugin provides:
|
|
|
|
* fully customizable footnote start and end shortcodes;
|
|
* stylable tooltips supporting hyperlinks and dedicated text;
|
|
* a responsive 'reference container', with customisable positioning;
|
|
* a wide choice of different numbering styles;
|
|
* a freely-configurable and optional backlink symbol;
|
|
* footnote appearance customisation via dashboard settings and custom CSS style
|
|
rules; and
|
|
* editor buttons for easily adding shortcode tags.
|
|
|
|
## Getting Started
|
|
|
|
1. Read the [contributing guidelines][contributing];
|
|
1. clone this repository (`git clone git@github.com:markcheret/footnotes.git`):
|
|
* we recommend that you use [VVV][vvv] for your local testing environment.
|
|
1. install [Composer][composer] and [NPM][npm]; and
|
|
1. install all dependencies (`composer install`):
|
|
* you will have to install `php-mbstring` manually if you do not already
|
|
have it.
|
|
|
|
## Deploying
|
|
|
|
Automated release deployments will be introduced soon.
|
|
|
|
### Building
|
|
|
|
1. Run `_tools/build-stylesheets.sh -c` to concatenate stylesheets;
|
|
1. manually minify the output files in `css/tmp/`, saving them as `.min.css` files:
|
|
* the intention is to replace this with automated minification, meaning that
|
|
all of these steps can be rolled into a single `build` command.
|
|
1. run `_tools/build-stylesheets.sh -d` to deploy the minified files to `dist/`:
|
|
* **this will delete any existing `dist/` folder!**
|
|
1. run `composer run build` to move over the remaining files to `dist/`:
|
|
* currently, the files to include in a distribution are hard-coded in
|
|
`_tools/build.sh`; but
|
|
* the intention is to replace this with a proper parsing of the `.distignore`
|
|
file
|
|
|
|
### Releasing
|
|
|
|
1. Ensure that you have configured your Git config. with SVN credentials;
|
|
1. run the above [build](#building) commands; and
|
|
1. run `composer run release` and follow the prompts.
|
|
|
|
## Testing
|
|
|
|
Automated testing will be introduced soon.
|
|
|
|
## Code Formatting
|
|
|
|
This repo. uses pre-commit code formatting and linting on all staged files.
|
|
This ensures that only style-conformant code can be committed.
|
|
|
|
The individual commands can also be called manually:
|
|
|
|
* Run `composer run format` to run all format commands.
|
|
* Run `composer run format:fix` to attempt to automatically fix all formatter warnings
|
|
and errors.
|
|
|
|
* Run `composer run lint` to run all linting commands.
|
|
* Run `composer run lint:fix` to attempt to automatically fix all linter warnings
|
|
and errors.
|
|
|
|
### PHP Code
|
|
|
|
PHP code must follow the [WordPress PHP Coding Standards][wpcs-php].
|
|
|
|
1. Run `composer run lint:php` to lint all JS/TS files with [PHP CodeSniffer][phpcs]
|
|
1. Run `composer run lint:php:fix` to attempt to automatically fix warnings and
|
|
errors with the PHP Code Beautifier and Formatter.
|
|
|
|
### JavaScript Code
|
|
|
|
JavaScript code must follow the [WordPress JavaScript Coding Standards][wpcs-js].
|
|
|
|
* Run `composer run format:js` to format all JS files with [Prettier][prettier].
|
|
* Run `composer run format:js:fix` to attempt to automatically fix warnings and errors.
|
|
|
|
* Run `composer run lint:js` to lint all JS files with [ESLint][eslint].
|
|
* Run `composer run lint:js:fix` to attempt to automatically fix warnings and errors.
|
|
|
|
Prettier configuration settings are found in `.prettierrc`.
|
|
|
|
ESLint configuration settings are found in `.eslintrc.js`. File ignore rules are
|
|
found in `.eslintignore`.
|
|
|
|
### CSS Stylesheets
|
|
|
|
JavaScript code must follow the [WordPress CSS Coding Standards][wpcs-css].
|
|
|
|
* Run `composer run lint:css` to format all CSS files with [stylelint][stylelint].
|
|
* Run `npcomposerm run lint:css:fix` to attempt to automatically fix warnings and
|
|
errors.
|
|
|
|
stylelint configuration settings are found in `.stylelint.json`.
|
|
|
|
## Documentation
|
|
|
|
Run `composer run docs` to automatically generate HTML documentation with
|
|
[phpDocumentor][phpdocumentor].
|
|
|
|
View the current docs [here][footnotes-docs].
|
|
|
|
## Acknowledgements
|
|
|
|
Huge thanks to every **footnotes user**, contributor, bug reporter, feature
|
|
requester and fan!
|
|
|
|
## License
|
|
|
|
This project is licensed under the [GNU GPL v3][gpl-v3].
|
|
|
|
## Contact Information
|
|
|
|
| Name | Link(s) |
|
|
|---------------|-----------------------|
|
|
|Mark Cheret | [Email][mcheret] |
|
|
|
|
[wpmudev]: http://premium.wpmudev.org/blog/12-surprisingly-useful-wordpress-plugins-you-dont-know-about/
|
|
[php]: https://www.php.net/
|
|
[contributing]: https://github.com/markcheret/footnotes/blob/main/CONTRIBUTING.md
|
|
[vvv]: https://varyingvagrantvagrants.org/
|
|
[composer]: https://getcomposer.org/download/
|
|
[npm]: https://www.npmjs.com/
|
|
[wpcs-php]: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/
|
|
[phpcs]: https://github.com/squizlabs/PHP_CodeSniffer
|
|
[wpcs-js]: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/javascript/
|
|
[wpcs-css]: https://developer.wordpress.org/coding-standards/wordpress-coding-standards/css/
|
|
[prettier]: https://prettier.io/
|
|
[eslint]: https://eslint.org/
|
|
[stylelint]: https://stylelint.io/
|
|
[phpdocumentor]: https://phpdoc.org/
|
|
[footnotes-docs]: https://markcheret.github.io/footnotes/
|
|
[gpl-v3]: https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
[mcheret]: mailto:mark@cheret.de
|