差分

1版 をインポートしました
40行目: 40行目:  
return
 
return
 
end
 
end
 +
 
local ignoreblank = isnotempty(args['ignoreblank'])
 
local ignoreblank = isnotempty(args['ignoreblank'])
 
local showblankpos = isnotempty(args['showblankpositional'])
 
local showblankpos = isnotempty(args['showblankpositional'])
60行目: 61行目:  
end
 
end
 
if isnotempty(preview) then
 
if isnotempty(preview) then
preview = '<div class="hatnote" style="color:red"><strong>警告:</strong> ' .. preview .. '(このメッセージはプレビュー時のみ表示されます。)</div>'
+
preview = '<div class="hatnote" style="color:red"><strong>Warning:</strong> ' .. preview .. ' (this message is shown only in preview).</div>'
 
elseif preview == nil then
 
elseif preview == nil then
 
preview = unknown
 
preview = unknown
98行目: 99行目:  
end
 
end
 
-- avoid error with v = 'example%2' ("invalid capture index")
 
-- avoid error with v = 'example%2' ("invalid capture index")
local r = unknown:gsub('_VALUE_', {_VALUE_ = v})
+
local r = unknown:gsub('_VALUE_', {_VALUE_ = v})
 
table.insert(res, r)
 
table.insert(res, r)
 
end
 
end