I have an HTML editor based on bootstrap-wysiwyg on which I'd like to add a Insert table button. According to what stated in issue #17 it should be possible to do this using an insertHtml call. So I tried adding a row like this:
<a class="btn" data-edit="insertHTML" value="<table><tr><td>Val1</td><td>Val2</td></tr></table>"><i class="icon-table"></i></a>
but doesn't work...
I tried much, but finally found the solution to this:
Hope it fits for you.