pandoc doesn’t text-wrap code blocks when converting to pdf
If you have a recent installation of LaTeX that includes the fvextra package, then there is a simple solution, recently suggested by jannick0. Modify your YAML header options to include \usepackage{fvextra} \begin{Highlighting}[breaklines,numbers=left] and compile with xelatex. For instance, — header-includes: – \usepackage{fvextra} – \DefineVerbatimEnvironment{Highlighting}{Verbatim}{breaklines,commandchars=\\\{\}} — ~~~~~{.java} this is a very long long long long long … Read more