A Swagger to AsciiDoc or Markdown converter to simplify the generation of an up-to-date RESTful API documentation by combining documentation that’s been hand-written with auto-generated API documentation.
Apache License 2.0
2.5k
stars
382
forks
source link
When generating .html/.pdf, the char '+' before [ \"] in a String is missing #360
Swagger2Markup version: 1.2.0
Problem description: I use the swagger's annotaion
@ApiImplicitParam
, and fill its propertyvalue
with"Sign rule: md5(abcd)+ \"efgh\" +md5(ijk)"
like
The result of .pdf/.html is shown as "Sign rule: md5(abcd)"efgh" +md5(ijk)"
The char
+
from the left is missedEven if I replace
\"
to "'", it still doesn't work