diff --git a/inst/templates/bootstrap.html b/inst/templates/bootstrap.html
index 170724d7..a99bd04c 100644
--- a/inst/templates/bootstrap.html
+++ b/inst/templates/bootstrap.html
@@ -46,7 +46,9 @@
var newRow = table.insertRow(i);
var newCell = newRow.insertCell(0);
newCell.setAttribute("colspan", colspan);
- newCell.innerText = content;
+ // newCell.innerText = content;
+ // this may be unsafe, but innerText does not interpret
+ newCell.innerHTML = content;
}