Skip to main content

rendered_markdown

Creates, updates, deletes, gets or lists a rendered_markdown resource.

Overview

Namerendered_markdown
TypeResource
Idgithub.markdown.rendered_markdown

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
renderinserttextDepending on what is rendered in the Markdown, you may need to provide additional token scopes for labels, such as issues:read or pull_requests:read.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

INSERT examples

Depending on what is rendered in the Markdown, you may need to provide additional token scopes for labels, such as issues:read or pull_requests:read.

INSERT INTO github.markdown.rendered_markdown (
text,
mode,
context
)
SELECT
'{{ text }}' /* required */,
'{{ mode }}',
'{{ context }}'
;