-
-
Notifications
You must be signed in to change notification settings - Fork 61
Fix markdown display within []
#493
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -183,8 +183,12 @@ fun AnnotatedString.Builder.appendMarkdownReference( | |
| buildMarkdownAnnotatedString(content, linkText.mapAutoLinkToType(), annotatorSettings) | ||
| } | ||
| } else { | ||
| // if no reference is found, reference links are just rendered as normal text. | ||
| append(node.getUnescapedTextInNode(content)) | ||
| // if no reference is found, reference links are rendered as their individual components | ||
| val linkText = node.findChildOfType(MarkdownElementTypes.LINK_TEXT) | ||
| if (linkText != null) { | ||
| buildMarkdownAnnotatedString(content, linkText, annotatorSettings) | ||
| } | ||
| buildMarkdownAnnotatedString(content, labelNode, annotatorSettings) | ||
|
Comment on lines
+186
to
+191
|
||
| } | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Variable shadowing: The variable name
linkTextis already used in this function scope (line 167). Consider using a different name likelinkTextNodeto avoid confusion and improve code clarity. The shadowed variable has typeList<ASTNode>?while this new variable has typeASTNode?, which makes the distinction even more important.