Files
jetbrains-client-api-reposi…/apis/github/Apis/MarkdownApi.http
Julien Lengrand-Lambert 11f40e54fa First test with API repository
2024-03-06 12:35:34 +01:00

27 lines
509 B
HTTP

## MarkdownApi
### Render a Markdown document
## Render a Markdown document
POST https://api.github.com/markdown
Content-Type: application/json
Accept: text/html
Authorization: Bearer={{bearerToken}}
{
"text" : "Hello **world**"
}
### Render a Markdown document in raw mode
## Render a Markdown document in raw mode
POST https://api.github.com/markdown/raw
Content-Type: text/plain
Content-Type: text/x-markdown
Accept: text/html
Authorization: Bearer={{bearerToken}}
{
"text" : "Hello **world**"
}