- Issue created by @pinesso
The current output generated by the ckeditor5_bootstrap_accordion
contrib module does not follow the official Bootstrap 5 accordion markup structure.
The headings are not rendered as <h2>
elements and the buttons are not actual <button>
elements. Instead, the module uses incorrect tags like <div>
or <a>;
, which breaks accessibility and diverges from Bootstrap’s official pattern.
ckeditor5_bootstrap_accordion
plugin to create an accordion.Update the module output to fully comply with the Bootstrap 5 accordion markup standards:
<h2>
for accordion headings.<button>
elements for accordion toggles.This will improve accessibility, maintainability, and ensure consistent UI behavior.
No visual design changes expected, but accessibility and semantic HTML will improve.
No API changes expected, only output HTML changes.
No data model changes expected.
Active
1.0
Code