-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
baseline coverage #36
base: main
Are you sure you want to change the base?
Conversation
) | ||
.join(`\\\\\n\\hline\n`)} | ||
.map((raw) => | ||
headers.map((k) => ("" + raw[k]).replace(/&/g, "\\&")).join(" & ") |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI 2 months ago
To fix the problem, we need to ensure that all backslashes in the input are properly escaped before generating the LaTeX table. This can be done by adding an additional replace
call to escape backslashes before escaping the &
character. We will use a regular expression with the global flag to ensure all occurrences are replaced.
-
Copy modified line R524
@@ -523,3 +523,3 @@ | ||
.map((raw) => | ||
headers.map((k) => ("" + raw[k]).replace(/&/g, "\\&")).join(" & ") | ||
headers.map((k) => ("" + raw[k]).replace(/\\/g, "\\\\").replace(/&/g, "\\&")).join(" & ") | ||
) |
No description provided.