Skip to content
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

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft

baseline coverage #36

wants to merge 7 commits into from

Conversation

pelikhan
Copy link
Member

No description provided.

@pelikhan pelikhan changed the title started on conversation baseline coverage Jan 27, 2025
)
.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

This does not escape backslash characters in the input.

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.

Suggested changeset 1
src/genaisrc/promptpex.mts

Autofix patch

Autofix patch
Run the following command in your local git repository to apply this patch
cat << 'EOF' | git apply
diff --git a/src/genaisrc/promptpex.mts b/src/genaisrc/promptpex.mts
--- a/src/genaisrc/promptpex.mts
+++ b/src/genaisrc/promptpex.mts
@@ -523,3 +523,3 @@
       .map((raw) =>
-          headers.map((k) => ("" + raw[k]).replace(/&/g, "\\&")).join(" & ")
+          headers.map((k) => ("" + raw[k]).replace(/\\/g, "\\\\").replace(/&/g, "\\&")).join(" & ")
       )
EOF
@@ -523,3 +523,3 @@
.map((raw) =>
headers.map((k) => ("" + raw[k]).replace(/&/g, "\\&")).join(" & ")
headers.map((k) => ("" + raw[k]).replace(/\\/g, "\\\\").replace(/&/g, "\\&")).join(" & ")
)
Copilot is powered by AI and may make mistakes. Always verify output.
@pelikhan pelikhan marked this pull request as draft March 21, 2025 19:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant