Module:TextCopy
Documentation for this module may be created at Module:TextCopy/doc
-- -- This module implements {{TextCopy}} -- require('Module:No globals') local p = {} local getArgs = require('Module:Arguments').getArgs function p.sidebar(frame, args) if not args then args = getArgs(frame) end local root = mw.html.create() root = root:tag('div') root :addClass('textcopyouter') :tag('div') :addClass('copyleft') :tag('div') :addClass('textcopyright') end return p