From b4520ab2468c71034536d9fedfb6261ce5e1bb7a Mon Sep 17 00:00:00 2001 From: Vincent Arel-Bundock Date: Fri, 19 Jan 2024 15:23:48 -0500 Subject: [PATCH] issue83 --- inst/templates/bootstrap.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; }