Adam
Новая страница: «local p = {} local function splitISO8601( str ) if 'table' == type( str ) then if str.args and str.args[1] then str = '' .. str.args[1] else return 'unknown argument type: ' .. type( str ) .. ': ' .. table.tostring( str ) end end local Y, M, D = ( function( str ) local pattern = '(%-?%d+)%-(%d+)%-(%d+)T' local Y, M, D = mw.ustring.match( str, pattern ) return tonumber( Y ), tonumber( M ), tonumber( D ) end )( str ); local h, m, s = (...»