پودمان:Pipe escape: تفاوت میان نسخه‌ها

    از ویکی‌نور
    fa>LR Guanzon
    (Created page with '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.co...')
     
    جز (۱ نسخه واردشده)
     
    (بدون تفاوت)

    نسخهٔ کنونی تا ‏۳ ژانویهٔ ۲۰۲۳، ساعت ۲۳:۱۴

    توضیحات این پودمان می‌تواند در پودمان: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