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
The code used to avoid auto-linking in literal blocks wrongly assumes that a literal block ends with any blank line. This results in wrongly auto-linking in lines in literal blocks following a blank line.
The correct check is for a non-indented line following a blank line.
The text was updated successfully, but these errors were encountered:
rdzman
added a commit
to rdzman/matlabdomain
that referenced
this issue
Feb 8, 2024
… matlab_auto_link = "all".
The detect_literal_block() method in mat_documenters.py would mistakenly assume that *any* blank line terminates the literal block, rather than looking for a non-indented line *after* a blank line. This resulted in wrongly auto-linking in lines following a blank line in a literal block.
Ref: sphinx-contrib#240
…ink = "all". (#241)
The detect_literal_block() method in mat_documenters.py would mistakenly assume that *any* blank line terminates the literal block, rather than looking for a non-indented line *after* a blank line. This resulted in wrongly auto-linking in lines following a blank line in a literal block.
Ref: #240
The code used to avoid auto-linking in literal blocks wrongly assumes that a literal block ends with any blank line. This results in wrongly auto-linking in lines in literal blocks following a blank line.
The correct check is for a non-indented line following a blank line.
The text was updated successfully, but these errors were encountered: