An accessibility checker plugin for TinyMCE.
You will need to have an instance of TinyMCE setup prior to using this plugin.
npm install tinymce-a11y-checker --save
# or
yarn add tinymce-a11y-checker
import tinymce from "tinymce"
import "tinymce-a11y-checker"
tinymce.init({
selector: "#editor",
plugins: ["a11y_checker"],
toolbar: "check_a11y | bold italic ..."
})
PRs accepted.