我有以下 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 显示myendpoint_response.xml包含在 <code> 块中,并被解释为 XML 内容(甚至不可见),而不是将myendpoint_response.json的内容呈现为漂亮打印的 <pre> 块。
如何将我的 XML 文件包含为打印精美的 XML?
我正在使用以下库:
- org.raml:raml 解析器:0.8.10
- net.ozwolf:dropwizard-raml-view:3.0.3
- 爪哇 8
- 时髦的 3.1.30