debian-mirror-gitlab/doc/api/markdown.md

28 lines
1.1 KiB
Markdown
Raw Normal View History

2018-11-08 19:23:39 +05:30
# Markdown API
2020-04-22 19:07:51 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/18926) in GitLab 11.0.
2018-11-08 19:23:39 +05:30
Available only in APIv4.
## Render an arbitrary Markdown document
2020-04-08 14:13:33 +05:30
```plaintext
2018-11-08 19:23:39 +05:30
POST /api/v4/markdown
```
| Attribute | Type | Required | Description |
| --------- | ------- | ------------- | ------------------------------------------ |
2020-01-01 13:55:28 +05:30
| `text` | string | yes | The Markdown text to render |
2018-11-08 19:23:39 +05:30
| `gfm` | boolean | no (optional) | Render text using GitLab Flavored Markdown. Default is `false` |
2020-04-08 14:13:33 +05:30
| `project` | string | no (optional) | Use `project` as a context when creating references using GitLab Flavored Markdown. [Authentication](README.md#authentication) is required if a project is not public. |
2018-11-08 19:23:39 +05:30
2020-03-13 15:44:24 +05:30
```shell
2018-11-08 19:23:39 +05:30
curl --header Content-Type:application/json --data '{"text":"Hello world! :tada:", "gfm":true, "project":"group_example/project_example"}' https://gitlab.example.com/api/v4/markdown
```
Response example:
```json
{ "html": "<p dir=\"auto\">Hello world! <gl-emoji title=\"party popper\" data-name=\"tada\" data-unicode-version=\"6.0\">🎉</gl-emoji></p>" }
```