-
Notifications
You must be signed in to change notification settings - Fork 23
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
Expand \FV@EscChars to handle comma, possibly other characters #15
Comments
Perhaps even a hook so users can add their own? \appto\FV@EscChars{\FV@EscChars@user}
% definition
\define@key{FV}{escape chars}{\def\FV@EscChars@user{#1}}
\define@key{FV}{escape chars*}{\appto\FV@EscChars@user{#1}}
\fvset{escape chars}
Just for fun, here's an implementation of a more user-friendly option
|
Resolving of this issue made it necessary to use escaped comma ( |
@muzimuzhi Using a comma seems to work as expected: \documentclass{article}
\usepackage{fvextra}
\begin{document}
TEXT
\begin{Verbatim}[breaklines,breakafter={,}]
a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,
\end{Verbatim}
\end{document} Or is this related to |
Ah yes. I made a mistake by testing with Then maybe words "should be backslash-escaped" in the related doc are too strong:
|
The text was updated successfully, but these errors were encountered: