Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 716 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 716 Bytes

Github Markdown to HTML

Build

Renders a Markdown document in HTML using the Github REST API. The API is called with the current repository as context and gfm as mode to resolve references to PRs and issues. See Github REST API for more details.

Inputs

text

The Markdown text to render in HTML.

Outputs

html

The rendered in HTML.

Example usage

uses: repolevedavaj/github-markdown-to-html@v1
with:
  text: ${{ steps.release.outputs.body }}
env:
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}