We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1212178 commit 37d4329Copy full SHA for 37d4329
wasm/mml-studio/mml-commands.html
@@ -332,9 +332,13 @@ <h1 id="page-title" class="heading"></h1>
332
333
commandTable.innerHTML = "";
334
COMMANDS.forEach((c) => {
335
- let cmdHTML = c.cmd;
+ let cmdHTML = c.cmd
336
+ .replaceAll("&", "&")
337
+ .replaceAll("<", "<")
338
+ .replaceAll(">", ">");
339
+
340
if (c.cmd.startsWith("C/D/E/F/G/A/B")) {
- cmdHTML = c.cmd.replaceAll("/", "/<wbr>");
341
+ cmdHTML = cmdHTML.replaceAll("/", "/<wbr>");
342
}
343
const tr = document.createElement("tr");
344
tr.className = "rowcard";
0 commit comments