footnotes aims to be the all-in-one solution for displaying an automatically-generated list of references on your WordPress Page or Post. [NB - clone of https://github.com/markcheret/footnotes, no longer mirroring] https://bengoldsworthy.net/portfolio/programs/footnotes/
This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Mark Cheret 6a32c828e1
Merge pull request #93 from markcheret/automated-linting
build: add automated JS/CSS linting
2021-04-15 23:10:30 +02:00
.github feat: re-add caching command, add linting command 2021-04-15 16:31:04 +01:00
_tools style: rename production flag variable 2021-04-14 22:47:44 +01:00
class fix: other assorted fixes 2021-04-15 17:17:27 +01:00
contrib Update codebase to be WP Coding Standard-compliant. 2021-02-23 16:44:18 +00:00
css Merge branch 'main' into automated-linting 2021-04-15 15:07:27 +01:00
docs Generate HTML documentation using phpDocumentor 2021-04-15 15:30:21 +00:00
img Add footnotes header image 2021-04-15 15:30:21 +00:00
js Merge branch 'main' into automated-linting 2021-04-15 23:09:20 +02:00
languages urgent release 2.5.2 2021-01-19 23:45:34 +00:00
templates Release urgent feature 2.7.0 in response to request from user @grflukas. 2021-04-14 23:10:29 +00:00
.distignore chore: add php-commitizen (#76) 2021-04-12 21:14:13 +01:00
.eslintignore build: add JS and CSS linters 2021-04-15 03:06:08 +01:00
.eslintrc.js build: add JS and CSS linters 2021-04-15 03:06:08 +01:00
.gitignore Add authorsfile to gitignore 2021-04-15 15:30:21 +00:00
.php-commitizen.php chore: add php-commitizen (#76) 2021-04-12 21:14:13 +01:00
.prettierignore build: add JS formatting commands 2021-04-15 03:20:58 +01:00
.prettierrc build: add JS and CSS linters 2021-04-15 03:06:08 +01:00
.stylelintignore build: correct stylelint settings 2021-04-15 03:10:02 +01:00
.stylelintrc.json build: correct stylelint settings 2021-04-15 03:10:02 +01:00
CONTRIBUTING.md chore: add php-commitizen (#76) 2021-04-12 21:14:13 +01:00
LICENSE Create LICENSE 2021-04-15 15:30:21 +00:00
README.md re-add `/dashboard` dir 2021-04-15 17:03:46 +01:00
SECURITY.md Create SECURITY.md 2021-02-20 20:09:46 +00:00
composer.json build: add NPM commands, docs 2021-04-15 15:03:09 +01:00
composer.lock style: remove trailing newlines 2021-04-15 17:02:09 +01:00
customized-documentation-schema.txt chore: remove date info (#94) 2021-04-15 05:09:23 +01:00
customized-template-stack.txt chore: remove date info (#94) 2021-04-15 05:09:23 +01:00
features.txt Append line endings 2021-02-23 16:00:59 +00:00
footnotes.php Merge branch 'main' into svn-sync 2021-04-15 16:52:59 +01:00
includes.php Sync filenames with SVN repo (#57) 2021-03-04 07:46:19 +00:00
license.txt Append line endings 2021-02-23 16:00:59 +00:00
package-lock.json build: add JS and CSS linters 2021-04-15 03:06:08 +01:00
package.json build: add JS formatting commands 2021-04-15 03:20:58 +01:00
readme.txt Merge branch 'main' into svn-sync 2021-04-15 16:52:59 +01:00
wpml-config.xml - Add: WPML Config XML file for the string translation plugin 2014-09-03 15:49:40 +00:00

README.md

footnotes

footnotes

Featured on wpmudev — cheers for the review, folks!

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.

Table of Contents

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;
  2. clone this repository (git clone git@github.com:markcheret/footnotes.git):
    • we recommend that you use VVV for your local testing environment.
  3. install Composer and NPM; and
  4. 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;
  2. 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.
  3. run _tools/build-stylesheets.sh -d to deploy the minified files to dist/:
    • this will delete any existing dist/ folder!
  4. 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;
  2. run the above build commands; and
  3. 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.

  1. Run composer run lint:php to lint all JS/TS files with PHP CodeSniffer
  2. 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.

  • Run composer run format:js to format all JS files with 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.

  • 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.

  • Run composer run lint:css to format all CSS files with 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.

View the current docs here.

Acknowledgements

Huge thanks to every footnotes user, contributor, bug reporter, feature requester and fan!

License

This project is licensed under the GNU GPL v3.

Contact Information

Name Link(s)
Mark Cheret Email