See if replaceAll works on actions
This commit is contained in:
@@ -244,7 +244,7 @@ function generateMarkdownForRawTableCell(
|
||||
break;
|
||||
}
|
||||
// `|` characters break the table, so we need to escape them
|
||||
return cellValue.replace(/\|/g, '\\|');
|
||||
return cellValue.replaceAll('|', '\\|');
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user