Skip to content

Commit

Permalink
https://github.com/jackdewinter/pymarkdown/issues/1126
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdewinter committed Jul 5, 2024
1 parent 40ae7b6 commit eea279a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions newdocs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- https://github.com/jackdewinter/pymarkdown/issues/1123
- https://github.com/jackdewinter/pymarkdown/issues/1124
https://github.com/jackdewinter/pymarkdown/issues/1125
https://github.com/jackdewinter/pymarkdown/issues/1126

### Changed

Expand Down
3 changes: 1 addition & 2 deletions pymarkdown/block_quotes/block_quote_count_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@ def __should_continue_processing(
) = BlockQuoteCountHelper.__is_special_double_block_case(
parser_state, adjusted_line, start_index, current_count, stack_count
)
CHANGE_1 = True
if not continue_processing and current_count < stack_count and CHANGE_1:
if not continue_processing and current_count < stack_count:
continue_proc, stack_token_index = BlockQuoteCountHelper.__xx_part_one(parser_state, start_index, current_count, stack_count)
if continue_proc:
current_count, start_index, last_block_quote_index = BlockQuoteCountHelper.__xx_part_two(parser_state, stack_token_index, start_index, current_count, stack_count, last_block_quote_index)
Expand Down

0 comments on commit eea279a

Please sign in to comment.