Pithub::Markdown(3pm) | User Contributed Perl Documentation | Pithub::Markdown(3pm) |
Pithub::Markdown - Github v3 Markdown API
version 0.01040
The rendering mode. Can be either:
The repository context to use when creating references in "gfm" mode. Omit this parameter when using "markdown" mode.
Render an arbitrary Markdown document
POST /markdown
Example:
use Pithub::Markdown; my $response = Pithub::Markdown->new->render( data => { text => "Hello world github/linguist#1 **cool**, and #1!", context => "github/gollum", mode => "gfm", }, ); # Note that response is NOT in JSON, so ->content will die my $html = $response->raw_content;
Johannes Plunien <plu@cpan.org>
This software is copyright (c) 2011 by Johannes Plunien.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-10-04 | perl v5.34.0 |