-
Notifications
You must be signed in to change notification settings - Fork 118
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
Slack flavored Markdown #90
Comments
@xijo thoughts? |
Hi @RummanSadiq, I'd say it depends on how big the differences between "normal" markdown and slack-flavored are. Anyway it would be great to get you started on open source, so please feel free to submit a PR, we can discuss implementation detail there, right? |
I also need to conver HTML to Slack's "mrkdwn". I was just trying to figure out whether I should roll my own, improve https://github.com/everwise/slack_transformer or add a Slack flavor to I would be very curious to see what you did, @RummanSadiq. @xijo, Slack's markup is quite different from Markdown, although they look very similar at first glance. For example:
Some markup works the same, like |
Hey @gabrielmdeal, Did you ever get anywhere with your need to convert HTML to Mrkdwn? I have the same need now and the only libraries available (like Thanks! |
I ended up rolling my own. But I do not own the code, so there is nothing I can share. 😞 |
a quick monkey patch covers the two really different slack mrkdown changes - bold & links
|
Hi, I was recently working with slack integration and had to convert HTML into Slack Flavored Markdown, which is a bit different than GitHub Flavored.
For the urgent need, I forked this project and made the required changes to make it work with Slack. I thought this might be good starting point for me to contribute to open source. If you guys think that there is a use for Slack Flavored Markdown, then I'll be more than happy to open a PR for it.
Slack only allows a small subset of Markdown features. It includes things like Bold, Italic, Ordered List, Unordered List, Quote, Code Block.
The text was updated successfully, but these errors were encountered: