-
-
Notifications
You must be signed in to change notification settings - Fork 94
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
Caption for images #63
Comments
I assume the reason why it is not the default behaviour might because of:
I might be wrong here and above are just my assumptions. Of couse, we should take @souvikinator's opinion on this. |
Yes, I wasn't aware that markdown doesn't support captions natively. Maybe this could be implemented as GitHub flavored markdown mode that can be turned on optionally. |
This sounds like a major feature addition and I think @souvikinator should decide on this one. |
@that-ambuj made valid points. Including HTML tags in content can be tricky due to rendering variations in different markdown parsers. I believe it's time to work on feature allowing people to choose the markdown flavour they want the output in (as @zirkelc mentioned) It's going to take some time but definitely will be a huge game changer. Would love to know your thoughts on this. |
Also ![image](https://picsum.photos/200)
*image_caption* produces same output as <figure>
<img src="https://picsum.photos/200" alt="image_caption" />
<figcaption>image_caption</figcaption>
</figure> |
It's quite easy to implement caption for images:
I was wondering why that's not the default behaviour?
The text was updated successfully, but these errors were encountered: