Option to show markdown code of other users comments #31913
Replies: 2 comments 2 replies
-
|
I agree that this would be nice. In the meantime, if you're willing to spend some effort, you can get access to the Markdown using the GitHub API. For issues and comments on them, you can use the REST API by going to an URL like https://api.github.com/repos/ipatix/agbplay/issues/51 and looking at the For discussions, you're going to have to use the GraphQL API. For example: {
repository(owner: "community", name: "community") {
discussion(number: 31913) {
body
}
}
}You can see the result in the GraphQL explorer. |
Beta Was this translation helpful? Give feedback.
-
|
One option is to "quote reply" to the message. This will show the original markdown of the message, albeit prefixed with If you remove the |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Whenever I go by a comment in an issue with some snazzy feature my immediate reaction is 'oh how did they do that!'
I would like the ... menu to have an option to see other's issue comments raw markdown.
Beta Was this translation helpful? Give feedback.
All reactions