You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the linter replaces & with literal and; however, there are some cases where it may be preferable to continue using the symbol (e.g. && within an inline code block).
We should investigate whether the ampersand can be escaped within the logic below without affecting the LaTeX generation.
defreplace_ampersand_in_findings_headings(line):
# If the line is a finding markdown heading and contains '&', replace '&' with 'and'ifline.strip().startswith('###') and'&'inline:
line=line.replace('&', 'and')
returnline
The text was updated successfully, but these errors were encountered:
Currently, the linter replaces
&
with literaland
; however, there are some cases where it may be preferable to continue using the symbol (e.g.&&
within an inline code block).We should investigate whether the ampersand can be escaped within the logic below without affecting the LaTeX generation.
The text was updated successfully, but these errors were encountered: