syroegkin / swagger-markdown

swagger to markdown transpiler
MIT License
237 stars 87 forks source link

fix(definitions): Replace newlines with spaces in table #116

Closed ffflorian closed 5 years ago

ffflorian commented 5 years ago

This PR will fix the conversion of the following example definition:

{
  "Pet": {
    "description": "This\nis\na\nvery\nlong\ndescription",
    "type": "string"
  },
}

Before

Screenshot before

After

Screenshot after

... and fixes two typos, too.

syroegkin commented 5 years ago

Thank you!