diff --git a/libs/uvldoc/luasrc/uvldoc/proto/xhtml/section.xml b/libs/uvldoc/luasrc/uvldoc/proto/xhtml/section.xml index e5c4b3e667..ed85c25cce 100644 --- a/libs/uvldoc/luasrc/uvldoc/proto/xhtml/section.xml +++ b/libs/uvldoc/luasrc/uvldoc/proto/xhtml/section.xml @@ -3,8 +3,17 @@ local table = require "table" function _parse_ref( r ) - local k, v = r:match("([^.]+)%.([^.]+)") - return k and self:_section_filename(k, v) + local k, v, h = r:match("([^.]+)%.([^.]+)%.([^.]+)") + if not k then + k, v = r:match("([^.]+)%.([^.]+)") + end + if k then + if h then + return self:_variable_target(k, v, h), true + else + return self:_section_filename(k, v) + end + end end function _parse_dep( r, c, s, o ) @@ -140,8 +149,8 @@ if (i==0) == v.required then