-
Notifications
You must be signed in to change notification settings - Fork 24
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
[Bug] indentation when using \href with a url containing %
#55
Comments
Thanks for catching this! I'll think about how best to address it. For now, you can always skip formatting for this line by appending |
Likely same bug, but broken .tex document as result. \documentclass{article} % Use the custom resume.cls style
\usepackage{hyperref}
\begin{document}
\begin{itemize}
\item Contributed to Zig \href{https://github.com/ziglang/zig/pulls?q=is%3Apr+author%3Amatu3ba+is%3Aclosed+compiler_rt}{compiler runtime integer routines} including tests for all edge cases.
\end{itemize}
\end{document} After
and document is now
failing on running
|
Links to files containing spaces contain
%
, and\href
allows you to insert the link as is.tex-fmt
seems to understand it as a comment and considers the{
from\href
to not be closed, therefore indenting the rest of the document.Example:
After formatting with
tex-fmt
:Thanks!
The text was updated successfully, but these errors were encountered: