"description":"Provides a web service that accesses a requested web page and outputs a markdown version.\n\nSource code for the web service is available at [the urltomarkdown repository](https://github.com/macsplit/urltomarkdown)",
"version":"1.0"
},
"servers":[
{
"url":"https://urltomarkdown.herokuapp.com"
}
],
"paths":{
"/":{
"get":{
"summary":"Convert a web page",
"description":"Outputs a markdown version of the page.",
"parameters":[
{
"in":"query",
"name":"url",
"description":"The address of the web page.",
"schema":{
"type":"string"
},
"required":true
},
{
"in":"query",
"name":"title",
"description":"Whether to prepend an inline title. This parameter expects the values \"true\" or \"false\" only.",
"schema":{
"type":"boolean"
}
},
{
"in":"query",
"name":"links",
"description":"Whether to mark up links. This parameter expects the values \"true\" or \"false\" only.",