# NAME Swagger2::Markdown - DEPRECATED convert a Swagger2 spec to various markdown formats
# VERSION 9.99 # DEPRECATION WARNING The Swagger2 distribution is no longer actively maintained. Ergo, this distribution is no longer actively maintained. If you would like to create an OpenAPI2::Markdown then please feel free. If you're looking at generating API docs from your Swagger2/OpenAPI spec then take a look at [https://github.com/Rebilly/ReDoc](https://github.com/Rebilly/ReDoc) # SYNOPSIS use strict; use warnings; use Swagger2; use Swagger2::Markdown; my $s2md = Swagger2::Markdown->new( swagger2 => Swagger2->new->load( $path_to_swagger_spec ) ); my $api_bp_str = $s2md->api_blueprint; my $markdown_str = $s2md->markdown( %pod_markdown_opts ); # DESCRIPTION This module allows you to convert a swagger specification file to API Blueprint markdown and basic markdown. Note that you may need to add `x-` values to your swagger config file to get better markdown output. # ATTRIBUTES ## swagger2 The [Swagger2](https://metacpan.org/pod/Swagger2) object, required at instantiation # METHODS ## markdown Returns a string of markdown using the [Pod::Markdown](https://metacpan.org/pod/Pod::Markdown) parser - the pod string is retrieved from the ->pod method of [Swagger2](https://metacpan.org/pod/Swagger2). As the parser is [Pod::Markdown](https://metacpan.org/pod/Pod::Markdown) you can pass in a hash of arguments that will be passed on to the [Pod::Markdown](https://metacpan.org/pod/Pod::Markdown) instantiation call: my $markdown = $s2md->markdown( %pod_markdown_opts ); ## api\_blueprint Returns a string of markdown in API Blueprint format. Because API Blueprint is more of a documentation orientated approach there are some sections that it contains that are not present in the swagger2 spec. Refer to the API Blueprint specification for the following terms: [https://github.com/apiaryio/api-blueprint/blob/master/API%20Blueprint%20Specification.md](https://github.com/apiaryio/api-blueprint/blob/master/API%20Blueprint%20Specification.md) You should add `x-api-blueprint` sections to the swagger2 config to define which format of API Blueprint output you want and to add extra summary and method documentation. The main layout of the API Blueprint file is defined as so in the top level of the swagger config file (YAML example here with defaults shown): x-api-blueprint: resource_section: method_uri action_section: method_uri attributes: false simple: false data_structures: false Possible values for resource\_section are: uri - #