Unobtrusive Accessibility Checker Plugin for Summernote WYSIWYG that uses CSS
This Plugin uses a modified version of the CSS rules from a11y.css to check the Accessibility of the content in the Summernote Editor Area.
Include the following code after Summernote:
<script src="summernote-a11y.js"></script>
Currently available in English!
$('.summernote').summernote({
toolbar:[
['a11y',['a11y']], // The Button
['style',['style']],
['font',['bold','italic','underline','clear']],
['fontname',['fontname']],
['color',['color']],
['para',['ul','ol','paragraph']],
['height',['height']],
['table',['table']],
['insert',['media','link','hr']],
['view',['fullscreen','codeview']],
['help',['help']]
],
a11y:{
langFile: '[folder]/lang/en-US.css' // This is the location to your CSS Language file.
}
});