-
Notifications
You must be signed in to change notification settings - Fork 335
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
list filter not working with special characters #8435
Comments
Thanks for the report! |
Root cause is here: |
Done https://github.com/drtingtp/quarto-cli-issue-8435 Quarto CLI version: quarto-1.4.549-win @dragonstyle I have noticed another unwanted behaviour while preparing the reproduction repo:
On another note, is there a temporary fix I can apply to my project as a Band-Aid? |
More on post render scripts here: |
This is a follow up on a2e298e which patches list.min.js to fix #8435. The fix suggested in javve/list.js#699 only remove the regex handling. Our initial patch was also removing the lowercase processing which broke search. This fixes #10720
This is a follow up on a2e298e which patches list.min.js to fix #8435. The fix suggested in javve/list.js#699 only remove the regex handling. Our initial patch was also removing the lowercase processing which broke search. This fixes #10720
Quarto Version: 1.3.450, 1.4.549
OS: Windows 10 x64
Problem:
Table listing does not allow filtering using special characters (e.g. dash).
Reproduction steps:
Reproduction repo
Possible cause:
I believe the cause lies in
list.min.js
module inlisting
quarto-cli/src/resources/projects/website/listing/list.min.js
Line 1 in 0377364
There is a replacement of a set of characters, so
-
is replaced by"\-"
.I am not sure what is the purpose of replacing the string but I am guessing my issue is due to either
The text was updated successfully, but these errors were encountered: