이 모듈에 대한 설명문서는 모듈:Pipe escape/설명문서에서 만들 수 있습니다 local p = {} function p.pipe( f ) local out = {} for _, arg in ipairs( f:getParent().args ) do table.insert( out, arg ) end return mw.text.trim( table.concat( out, '|' ) ) end return p