See if replaceAll works on actions

This commit is contained in:
shati-patel
2022-04-29 12:54:34 +01:00
committed by Shati Patel
parent cb84003c31
commit ed84825e65

View File

@@ -244,7 +244,7 @@ function generateMarkdownForRawTableCell(
break;
}
// `|` characters break the table, so we need to escape them
return cellValue.replace(/\|/g, '\\|');
return cellValue.replaceAll('|', '\\|');
}