I am trying to create the table in the Quill editor but I am unable to do it. Can anybody help me with how to do that in Quill editor because it was never the problem with the Tinymce?
I am unable to make it function on my website. Has anyone else managed to achieve this on their site? I would greatly appreciate assistance in integrating it into my website. Thank you.
Hello @Upadesh !
Unfortunately, the tables are missing in the version of Quill that we use. See more details here: https://github.com/quilljs/quill/issues/3173
I am unable to make it function on my website. Has anyone else managed to achieve this on their site? I would greatly appreciate assistance in integrating it into my website. Thank you.
Hello @LeonidS !
Is it possible to at least render the HTML table tag in Quill?
If I paste the table below into Quill source editor
<table> <thead> <tr> <th>Head 1</th> <th>Head 2</th> <th>Head 3</th> </tr> </thead> <tbody> <tr> <td>a11</td> <td>a12</td> <td>a13</td> </tr> <tr> <td>b11</td> <td>b12</td> <td>b13</td> </tr> </tbody> </table>
there is no output and the table tags get removed.