# \MarkdownApi All URIs are relative to *https://api.github.com* Method | HTTP request | Description ------------- | ------------- | ------------- [**markdown_slash_render**](MarkdownApi.md#markdown_slash_render) | **POST** /markdown | Render a Markdown document [**markdown_slash_render_raw**](MarkdownApi.md#markdown_slash_render_raw) | **POST** /markdown/raw | Render a Markdown document in raw mode ## markdown_slash_render > String markdown_slash_render(markdown_render_request) Render a Markdown document ### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **markdown_render_request** | [**MarkdownRenderRequest**](MarkdownRenderRequest.md) | | [required] | ### Return type **String** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: application/json - **Accept**: text/html [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) ## markdown_slash_render_raw > String markdown_slash_render_raw(body) Render a Markdown document in raw mode You must send Markdown as plain text (using a `Content-Type` header of `text/plain` or `text/x-markdown`) to this endpoint, rather than using JSON format. In raw mode, [GitHub Flavored Markdown](https://github.github.com/gfm/) is not supported and Markdown will be rendered in plain format like a README.md file. Markdown content must be 400 KB or less. ### Parameters Name | Type | Description | Required | Notes ------------- | ------------- | ------------- | ------------- | ------------- **body** | Option<**String**> | | | ### Return type **String** ### Authorization No authorization required ### HTTP request headers - **Content-Type**: text/plain, text/x-markdown - **Accept**: text/html [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)