Here is MWE.
\documentclass[a4paper,10pt]{article}
\begin{document}
\begin{description}
\item{Foo\ Bar \ Baz }
: Foo, Bar and Baz are friends.
\item a, b, c
\end{description}
\end{document}
It produces this:
Linebreaks are working fine but Foo, Bar and Baz are not aligning to the left. Is there a way to fix this? I rather redefine the description environment rather than change the text inside item{} everywhere in my current doc which has many descriptions.


\item? I rather add a redefinition at the top rather than change the doc at hundreds of places. – Dilawar Jun 10 '21 at 21:26\usepackage{enumitem} \setlist[description]{style=nextline}. – Dilawar Jun 10 '21 at 21:28\item[,Foo \\ Bar \\ Baz-- I trust you don't literally work with these exact words in your real document ... -- and]by hand. Is it really that much more work to enter\mystack{and}as well? If it really is too burdensome to do so, please edit your posting and provide a more realistic example of stacked words, to give your readers a better sense of what exactly needs to (and what does not need to) be accomplished.. – Mico Jun 10 '21 at 21:34\item{\texttt{foo}\n \texttt{bar}\n \texttt{baz}\n}etc and a very complicated redefinition of\textttand\itemwhich I have to remove else pandoc couldn't work. When I remove some complicated macros the alignment breaks. I can write a plugin for pandoc which can insert some macros/redefinitions at the top of the doc before converting. Another option is to usegawk/sed/regexwhich I am trying to avoid. Thanks for your time. – Dilawar Jun 10 '21 at 21:49