UNPKG

quill1-table

Version:

Table functionality for quilljs. Forked from https://github.com/acatec/quill-table-tbf which is a fork of original https://github.com/dost/quilljs-table

61 lines (60 loc) 1.76 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Quill JS Table Example</title> <link rel="stylesheet" href="css/fontawesome.css"> <link rel="stylesheet" href="css/solid.css"> <style> #quillContainer { height: 50vh; } </style> </head> <body> <div id="quillContainer"> <p> <br> </p> <table table_id="64kjqchnxr2"> <tr row_id="gcxvtk6kbq"> <td class="td-q" table_id="64kjqchnxr2" row_id="gcxvtk6kbq" cell_id="dm80tl8jzkh" colspan="3" rowspan="1"> <p>Title</p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="gcxvtk6kbq" cell_id="8l5vjmidgw9" merge_id="dm80tl8jzkh"> <p><br></p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="gcxvtk6kbq" cell_id="8l5vjmidgw0" merge_id="dm80tl8jzkh"> <p><br></p> </td> </tr> <tr row_id="lwotrwzclck"> <td class="td-q" table_id="64kjqchnxr2" row_id="lwotrwzclck" cell_id="cgql02rmbh"> <p>Hello world!</p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="lwotrwzclck" cell_id="wgrjuhllnlh"> <p><br></p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="lwotrwzclck" cell_id="wgrjuhllnli"> <p><br></p> </td> </tr> <tr row_id="m7utit95kgm"> <td class="td-q" table_id="64kjqchnxr2" row_id="m7utit95kgm" cell_id="l485ac5wi6e"> <p><strong>...</strong></p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="m7utit95kgm" cell_id="rryitv6elt"> <p><br></p> </td> <td class="td-q" table_id="64kjqchnxr2" row_id="m7utit95kgm" cell_id="rryitv6elu"> <p><br></p> </td> </tr> </table> <p> <br> </p> </div> <script src="demo.js"></script> </body> </html>