Content deleted Content added
←Created page with '-- Style for football tables local pp = {} function pp.header(t,Args,p_sub,pos_label,group_col,VTE_text,full_table,results_header_txt) -- Load relevant modules...' |
No edit summary |
||
Line 39:
-- First convert to lower case if it is a string
for_against_style = string.lower(for_against_style)
if for_against_style=='
fa_letter = '
fa_word_sing = '
fa_word_plur = '
elseif for_against_style=='none' then
hide_for_against = true
else
fa_letter = '
fa_word_sing = '
fa_word_plur = '
end
Line 69:
-- First convert to lower case if it is a string
for_against_style = string.lower(for_against_style)
if game_for_against_style=='
gfa_letter = '
gfa_word_sing = '
gfa_word_plur = '
elseif game_for_against_style=='none' then
hide_game_for_against = true
else
gfa_letter = '
gfa_word_sing = '
gfa_word_plur = '
end
|