mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 07:13:45 +01:00
Schema MD gen improvements
This commit is contained in:
parent
ff3d8c8805
commit
ba75c156db
@ -127,14 +127,14 @@ function generate_markdown(self)
|
||||
end
|
||||
if self.range then
|
||||
if self.range.min then
|
||||
line("> " .. self.range.min)
|
||||
line(">= " .. self.range.min)
|
||||
elseif self.range.min_exclusive then
|
||||
line(">= " .. self.range.min_exclusive)
|
||||
line("> " .. self.range.min_exclusive)
|
||||
end
|
||||
if self.range.max then
|
||||
line("< " .. self.range.max)
|
||||
line("<= " .. self.range.max)
|
||||
elseif self.range.max_exclusive then
|
||||
line("<= " .. self.range.max_exclusive)
|
||||
line("< " .. self.range.max_exclusive)
|
||||
end
|
||||
end
|
||||
if self.values then
|
||||
|
Loading…
Reference in New Issue
Block a user