There are lengthy code examples inside the swagger doc we have.
Is there a way to put them outside or separate and just reference them via alias or something?
I need to use them inside a description e.g. for the lack of a better place:
my-swagger.yaml
  /myapi-endpoint:
    get:
      tags: [Mytag]
      summary: My summary 
      description: |
        Php example code
        ```php
        <?php
            //my very long php code example...
        
