Merge pull request #69628 from Piralein/strong-treatment

fix conversion of csharp attributes in code blocks
This commit is contained in:
Rémi Verschelde 2022-12-06 11:00:36 +01:00
commit 05f64399c0
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -1565,7 +1565,7 @@ def format_text_block(
escape_post = False
# Tag is a reference to a class.
if tag_text in state.classes:
if tag_text in state.classes and not inside_code:
if tag_text == state.current_class:
# Don't create a link to the same class, format it as strong emphasis.
tag_text = f"**{tag_text}**"