diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-11-20 21:57:09 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-11-20 21:57:09 +0800 |
commit | 4ca61ec457822dd14966afa0752340ae8ce180a1 (patch) | |
tree | ae8adb1ad82c717868e551e699fd3cf3bb290089 /script/provider/markdown.lua | |
parent | c63b2e404d8d2bb984afe3678a5ba2b2836380cc (diff) | |
download | lua-language-server-4ca61ec457822dd14966afa0752340ae8ce180a1.zip |
no longer beta
Diffstat (limited to 'script/provider/markdown.lua')
-rw-r--r-- | script/provider/markdown.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/script/provider/markdown.lua b/script/provider/markdown.lua new file mode 100644 index 00000000..ca76ec89 --- /dev/null +++ b/script/provider/markdown.lua @@ -0,0 +1,26 @@ +local mt = {} +mt.__index = mt +mt.__name = 'markdown' + +function mt:add(language, text) + if not text or #text == 0 then + return + end + if language == 'md' then + if self._last == 'md' then + self[#self+1] = '' + end + self[#self+1] = text + else + self[#self+1] = ('```%s\n%s\n```'):format(language, text) + end + self._last = language +end + +function mt:string() + return table.concat(self, '\n') +end + +return function () + return setmetatable({}, mt) +end |