Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

文档对于列表的支持 #196

Closed
Xenofex opened this issue Oct 17, 2018 · 0 comments
Closed

文档对于列表的支持 #196

Xenofex opened this issue Oct 17, 2018 · 0 comments
Assignees
Labels

Comments

@Xenofex
Copy link

Xenofex commented Oct 17, 2018

各位,我在项目当中文档和渲染效果,见下面代码块和截图。

这里的问题是,我在文档当中用了-1.2.3.这样的markdown语法来实现无序列表和有序列表,从EmmyLua的渲染效果来看,是支持了,但是每一项都被当作一个单独的列表了。是我的使用有问题吗?谢谢。

---
---@class Promotion
---@description 代表了一个产品促销,由三部分属性组成。
--- - `prerequisites`是限定条件,限定了何种状态该优惠可以触发
--- - `product_vendor_id`,`product_count`是优惠应用范围,代表了该优惠会作用于那些产品上,也可以留空表示作用于整单
--- - `discount_ratio`,`discount_amount`,`discount_price`是折扣具体内容,表明了具体折扣的计算规则
---
--- `prerequisites`的说明:此属性有三种取值:
--- 1. 其中包含0个产品限制:说明此优惠应用于整单
--- 2. 其中包含1个产品限制:说明此优惠应用于单个产品。此时如果`product_vendor_id`有值,则必须等于限制中的值
--- 3. 其中包含N个产品限制:说明此优惠为套餐
---
---@field id string 主键
---@field name string 名称
---@field description string 描述信息
---@field prerequisites PromotionPrerequisite[] 限制。
---
---@field product_vendor_id string 限定应用于产品
---@field product_count number 限定应用于产品的数量
---
---@field discount_ratio number 折扣比率,0.2表示8折,0表示不打折,1表示免费
---@field discount_amount number 折扣金额,直接从价格中减掉的一个金额
---@field discount_price number 折扣价格,直接覆盖原产品价格
---
local Promotion = {}

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants