This module is used for Template:Hatnote. See the template's page for more information.
local getArgs = require('Module:Arguments').getArgs local p = {} function p.main(frame) local args = getArgs(frame) local wrapper = mw.html.create('div') :attr('class', 'noexcerpt') :attr('role', 'note') return tostring(wrapper) end return p