mirror of
https://github.com/jlengrand/jetbrains-client-api-repository.git
synced 2026-03-10 08:31:24 +00:00
27 lines
509 B
HTTP
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**"
|
|
}
|
|
|