14 lines
237 B
Markdown
14 lines
237 B
Markdown
|
---
|
||
|
layout: page
|
||
|
---
|
||
|
|
||
|
# Ellipsize
|
||
|
|
||
|
```lua
|
||
|
--- Ellipsizes string to a given length
|
||
|
local function ellipsize(text, length)
|
||
|
return (text:len() > length and length > 0)
|
||
|
and text:sub(0, length - 3) .. '...'
|
||
|
or text
|
||
|
end
|
||
|
```
|