-
Notifications
You must be signed in to change notification settings - Fork 1
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
Issuing an essay #28
Labels
Publish
Add this label to an issue to publish it on the blog
Comments
View your post at https://gabrielfalcao.essay.dev/post/28/issuing-an-essay |
This comment was created via github interface |
It won't pull in the some of the more GitHub-specific markdown add-ons because the GitHub API doesn't return those in the markdown. The body field in the query below is what essay.dev uses to render the post. It is interesting that GitHub puts the hash link in the bodyHTML field, though. query IssueQuery {
gitHub {
repository(name: "essay.dev" owner: "onegraph") {
issue(number: 28) {
bodyHTML
body
}
}
}
} {
"data": {
"gitHub": {
"repository": {
"issue": {
"bodyHTML": "<p>Today I found this project on <a href=\"https://news.ycombinator.com/\" rel=\"nofollow\">HackerNews</a> and decided to give it a try.</p>\n<p>The idea of a blog that uses Github issues as posts is intriguing, I'm wondering if it supports Github-flavored Markdown in its entirety.</p>\n<p>For instance, should the hash <a class=\"commit-link\" data-hovercard-type=\"commit\" data-hovercard-url=\"https://github.com/OneGraph/essay.dev/commit/431af3504780b1f69d74687715bd99e00cd8ac73/hovercard\" href=\"https://github.com/OneGraph/essay.dev/commit/431af3504780b1f69d74687715bd99e00cd8ac73\"><tt>431af35</tt></a> should point to a commit of this repository ?</p>",
"body": "Today I found this project on [HackerNews](https://news.ycombinator.com/) and decided to give it a try.\r\n\r\nThe idea of a blog that uses Github issues as posts is intriguing, I'm wondering if it supports Github-flavored Markdown in its entirety.\r\n\r\nFor instance, should the hash 431af3504780b1f69d74687715bd99e00cd8ac73 should point to a commit of this repository ?\r\n\r\n"
}
}
}
}
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Today I found this project on HackerNews and decided to give it a try.
The idea of a blog that uses Github issues as posts is intriguing, I'm wondering if it supports Github-flavored Markdown in its entirety.
For instance, should the hash 431af35 should point to a commit of this repository ?
The text was updated successfully, but these errors were encountered: