Add a table under the description or summary tag in AsyncAPI yaml file

46 Views Asked by At

I wanted to add a table under the AsyncAPI description or summary tag. But when I added it like swagger, it mixed up and show like a paragraph. I tried | and > symbols also. But didn’t work. Anyone know how to do this in AsyncAPI version 3.0.0 or 2.4.0


summary: |
        Test summary description. 
          +------------+
          | H1  | H2   |
          +-----+------+
          | ccc | ccc  |
          +-----+------+
          | ccc | ccc  |
          +-----+------+

The above table shows as follows when generated


Test summary description. +------------+ | H1 | H2 | +-----+------+ | ccc | ccc | +-----+------+ | ccc | ccc | +-----+------+


0

There are 0 best solutions below