Skip to content
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

Strikethrough in javadoc removed the text #1461

Closed
asfalcone opened this issue Sep 11, 2020 · 2 comments · Fixed by #1397
Closed

Strikethrough in javadoc removed the text #1461

asfalcone opened this issue Sep 11, 2020 · 2 comments · Fixed by #1397
Assignees
Labels

Comments

@asfalcone
Copy link
Contributor

Describe the bug
~~text~~ should be rendered as <del>text</del> but is rendered as <del></del> where the text is actually deleted rather than striked through

Using:

/**
 * A brutally difficult function to ~~render~~. Good luck!
*/

Expected

<p>A brutally difficult function to <del>render</del>. Good luck!
</p>

Actual

<p>A brutally difficult function to 
  <del></del>
. Good luck!
</p>

Installation

  • Operating system: all
  • Build tool: cli
  • Dokka version: 1.4.10-dev-70
@asfalcone asfalcone added the bug label Sep 11, 2020
@asfalcone
Copy link
Contributor Author

The DocumentationNode looks like
image

@BarkingBad BarkingBad self-assigned this Sep 11, 2020
@BarkingBad BarkingBad linked a pull request Sep 14, 2020 that will close this issue
@BarkingBad
Copy link
Contributor

139a020

should now be OK

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants