如何在多个描述中缩进和弹出som段

时间:2016-10-12 14:19:10

标签: format mule raml

我正在使用RAML编写API sepc并使用MULE独立版本进行发布。我想在资源中的动词描述中缩进并弹出一些附件。那可能吗?我尝试使用p样式标签,但它不起作用,尽管使用b标签进行粗体操作。

任何想法

2 个答案:

答案 0 :(得分:1)

在RAML中可以使用\n*将项目符号放在说明中,如下所示: -

/books: 

        displayName: Book
        description: !
                     "The following **services** that are listed here are :- \n\n* First point.
                     \n* Second point.
                     \n* Third point.
                     \n* Fourth point.
                     \n* Fith point.
                     \n* Sixth point.
                     \n* Seventh point  \n * Eight point with black bullet "

        get:
          description: !
                     "The following **services** description are :- \n\n* First point.
                     \n* Second point."

您需要!并将说明放在双引号

结果您可以看到如下: -
enter image description here

答案 1 :(得分:0)

使用RAML Spec 1.0时,我遇到了同样的问题,一段时间后,我发现换行符与<br />一起使用。所以我添加了它们并模拟了要点。

示例:

description: Some fruits: <br />* Apple
<br />* Banana
<br />* Kiwi

然后使用raml2html进行发布,效果很好。

我可以看到该线程已经很旧了,但是如果有人(例如我)正在寻找解决方案,我仍然想添加它。