Skip to content

Commit

Permalink
Add info about markup fixes to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Feb 10, 2022
1 parent 2cc467a commit fa927d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- In Jupyter mode make the link target be set to "_blank"
- Fix some issues with markup handling around "[" characters https://github.com/Textualize/rich/pull/1950

## [11.2.0] - 2022-02-08

Expand Down
2 changes: 1 addition & 1 deletion rich/markup.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def pop_style(style_name: str) -> Tuple[int, Tag]:

for position, plain_text, tag in _parse(markup):
if plain_text is not None:
# Capture open brace escapes, where the brace is not part of a tag.
# Handle open brace escapes, where the brace is not part of a tag.
plain_text = plain_text.replace("\\[", "[")
append(emoji_replace(plain_text) if emoji else plain_text)
elif tag is not None:
Expand Down

0 comments on commit fa927d9

Please sign in to comment.