我有以下RAML代码段:
/myendpoint:
post:
description: Blah
body:
application/json:
example: !include myendpoint_request.json
responses:
200:
description: Blah
body:
application/xml:
example: !include myendpoint_response.xml
我的问题是生成的HTML显示< code>中包含的 myendpoint_response.xml 。阻止,并解释为XML内容(甚至不可见),而不是 myendpoint_response.json 的内容被渲染为漂亮的< pre>块。
如何将我的XML文件包含为漂亮的XML?
我使用以下库: