2

How to specify 3 columns in a swagger editor so the output should look like:

a            b            c
x            y            z

swagger: '2.0'
info:
  description: >
    This is a sample server Petstore server.



    [Learn about Swagger](http://swagger.io) or join the IRC channel `#swagger`
    on irc.freenode.net.



    For this sample, you can use the api key `special-key` to test the
    authorization filters

    **Here I want to specify 3 columns** 
Mohsen
  • 64,437
  • 34
  • 159
  • 186
Kumar Roshan Mehta
  • 3,078
  • 2
  • 27
  • 50

1 Answers1

5

This is essentially a Markdown question. To make a table in Markdown use a tool like this or following syntax:

| One | Two | Three |
|-----|-----|-------|
| a   | b   | c     |
Mohsen
  • 64,437
  • 34
  • 159
  • 186