23 Aug
2023
23 Aug
'23
10:13 p.m.
Hi, when inline items are used and the itemize environment has a settings for the margin the value the whole paragraph is indented by the set value for itemize. \starttext \samplefile{lorem} \samplefile{lorem}\startitemize[a,intext][margin=2em]\item one \item two \stopitemize \samplefile{lorem} \samplefile{lorem} \stoptext The culprit in this case is the \doadaptleftskip command which keeps the margin value even after the group has ended. \starttext \samplefile{lorem} \samplefile{lorem}\bgroup\doadaptleftskip{1cm}\egroup\samplefile{lorem} \samplefile{lorem} \stoptext We need a check in this case to ensure the margin settings (margin, leftmargin and rightmargin) are ignored for inline items. Wolfgang