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
10.6.0:
Deprecated
Added deprecation warning for tabulate_mapping which will be removed in v11.0.0
Added
Added precision argument to filesize.decimal
Added separator argument to filesize.decimal
Added _rich_traceback_guard to Traceback
Added emoji_variant to Console
Added -emoji and -text variant selectors to emoji code
Fixed
Fixed issue with adjoining color tags Textualize/rich#1334
Changed
Changed Console.size to use unproxied stdin and stdout
Describe the bug
For nested bbcode tags, if two open tags of colors are adjoint, the latter one does not work.
To Reproduce
Expection:
[Segment('this should be blue', Style.parse("blue")), Segment('red here', Style.parse("red")), Segment('\n', None)]
Actual:
[Segment('this should be blue', Style.parse("red")), Segment('red here', Style.parse("red")), Segment('\n', None)]
Things work if a space is inserted between the open tags, or if either tag is not a color tag,
Platform
Platform: Linux and Mac
I belive it is not a platform specific issue.
The text was updated successfully, but these errors were encountered: