TableCaptionConfig
 interface
The configuration of the table caption feature.
Properties
- useCaptionElement : boolean | undefined- module:table/tableconfig~TableCaptionConfig#useCaptionElement- Sets the preferred HTML structure for table captions. - When this option is - false(the default) the structure is like this:- <figure class="table"> <table> <tbody> ... </tbody> </table> <figcaption> ... </figcaption> </figure>Copy code- When this option is - truethe structure is like this:- <figure class="table"> <table> <tbody> ... </tbody> <caption> ... </caption> </table> </figure>Copy code- ClassicEditor .create( { table: { tableCaption: { useCaptionElement: true } } } ) .then( ... ) .catch( ... );Copy code