From 698b950bf43a83384d6c2b8d58747518de3605d9 Mon Sep 17 00:00:00 2001 From: Joshua Hardy <30169852+joshuamhardy@users.noreply.github.com> Date: Sun, 19 Jan 2025 11:10:45 +1100 Subject: [PATCH] Update TableExport.js to include additional escape characters Added html escape codes for less than and greater than symbols: <%%60%%> for < <%%62%%> for > This enables use of break symbols in table entries e.g. <%%60%%>br<%%62%%> after using ExportTables to import entry is converted to:
--- TableExport/TableExport.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TableExport/TableExport.js b/TableExport/TableExport.js index 0824ba5..fbfab02 100644 --- a/TableExport/TableExport.js +++ b/TableExport/TableExport.js @@ -12,7 +12,9 @@ var TableExport = TableExport || (function() { '[' : '<%%91%%>', ']' : '<%%93%%>', '--' : '<%%-%%>', - ' --' : '[TABLEEXPORT:ESCAPE]' + ' --' : '[TABLEEXPORT:ESCAPE]', + '<' : '<%%60%%>', + '>' : '<%%62%%>' }, esRE = function (s) {