-
Notifications
You must be signed in to change notification settings - Fork 99
[23] Markdown is not rendered when \r and \n are code in unicode #1787
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
Labels
bug
Something isn't working
Comments
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Dec 12, 2024
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
3 tasks
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Dec 14, 2024
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Dec 16, 2024
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Jan 9, 2025
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
akurtakov
pushed a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Jan 22, 2025
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Mar 6, 2025
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Mar 10, 2025
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
Removed out of date milestone. Can this be continued for 4.36? |
jjohnstn
added a commit
to jjohnstn/eclipse.jdt.ui-1
that referenced
this issue
Apr 3, 2025
- convert unicode chars in CoreMarkdownAccessImpl.removeDocLineIntros() - add new test to MarkdownCommentTests - fixes eclipse-jdt#1787
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was originally raised in 3239
The jdt.core part has been addressed. The UI, where the rendering to HTML happens has to handle the unicode characters to create the correct HTML content.
The markdown comment is this:
/// Unicode in markdown \u000A///\u000D///\u000D\u000A///here
And this is the HTML created by
JavadocContentAccess2.getHTMLContent()
:Unicode in markdown \u000A/// \u000D/// \u000D\u000A/// here
Javadoc from JDK creates this:
The text was updated successfully, but these errors were encountered: