summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--script/library.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/library.lua b/script/library.lua
index a7b06e97..b460daf7 100644
--- a/script/library.lua
+++ b/script/library.lua
@@ -50,7 +50,7 @@ end
local function convertLink(uri, text)
local fmt = getDocFormater(uri)
- return text:gsub('%$([%.%w]+)', function (name)
+ return text:gsub('%$([%.%w_%:]+)', function (name)
local lastDot = ''
if name:sub(-1) == '.' then
name = name:sub(1, -2)
@@ -80,7 +80,7 @@ local function createViewDocument(name)
if not fmt then
return nil
end
- name = name:match '[%w_%.]+'
+ name = name:match '[%w_%.%:]+'
if name:sub(-1) == '.' then
name = name:sub(1, -2)
end