-
Notifications
You must be signed in to change notification settings - Fork 100
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
Add: Underline and strikethrough #38
base: master
Are you sure you want to change the base?
Conversation
…fficial markdown from John Gruber: http://daringfireball.net/projects/markdown/
@@ -570,7 +570,36 @@ private int recursiveEmitLine(final StringBuilder out, final String in, final in | |||
out.append(in.charAt(pos)); | |||
} | |||
break; | |||
case EM_STAR: |
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.
Why did you remove the EM_START case?
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.
sorry that change can be reverted
Another issue: could you please tell me, where you found that underline and strike-through are contained as elements in the standard Markdown? I wrote txtmark against the specs from Daring Fireball, and there was (and still is no) underline or strike-through. |
http://daringfireball.net/linked/2015/11/05/markdown-strikethrough-slack Perhaps time to close this PR. |
added underline and strikethrough function to the markdown like the official markdown from John Gruber: http://daringfireball.net/projects/markdown/