From Afropedia.world
m |
|||
| Line 1: | Line 1: | ||
-- | -- Module:Citation/CS1/Suggestions | ||
-- | -- Provides parameter suggestions for CS1/CS2 citation templates | ||
suggestions = { | local suggestions = {} | ||
[ | -- Common parameter misspellings and alternatives | ||
suggestions.suggestions = { | |||
['accessdate'] = 'access-date', | |||
[ | ['accessyear'] = 'access-date', | ||
['autor'] = 'author', | |||
['autore'] = 'author', | |||
['coauthor'] = 'author', | |||
['coauthors'] = 'author', | |||
['began'] = 'date', | |||
['created'] = 'date', | |||
['dateformat'] = 'df', | |||
['dead-url'] = 'url-status', | |||
['deadurl'] = 'url-status', | |||
['ended'] = 'date', | |||
['embargo'] = 'pmc-embargo-date', | |||
['in'] = 'language', | |||
['isbn13'] = 'isbn', | |||
['lastauthoramp'] = 'name-list-style', | |||
[' | ['lay-date'] = 'lay-date', | ||
[' | ['laysource'] = 'lay-source', | ||
[' | ['laysummary'] = 'lay-url', | ||
[' | ['layurl'] = 'lay-url', | ||
['mailinglist'] = 'mailing-list', | |||
[' | ['no-pp'] = 'no-tracking', | ||
[' | ['nopp'] = 'no-tracking', | ||
[' | ['notracking'] = 'no-tracking', | ||
[' | ['publicationdate'] = 'publication-date', | ||
['publisherid'] = 'publisher', | |||
['registration'] = 'url-access', | |||
[' | ['retrieved'] = 'access-date', | ||
['separator'] = 'mode', | |||
[' | ['subscription'] = 'url-access', | ||
[' | ['template doc demo'] = 'no-tracking', | ||
['trans_chapter'] = 'trans-chapter', | |||
['trans_title'] = 'trans-title', | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
[' | |||
} | } | ||
return suggestions | |||
return suggestions | |||
Revision as of 17:47, 19 January 2026
-- Module:Citation/CS1/Suggestions -- Provides parameter suggestions for CS1/CS2 citation templates
local suggestions = {}
-- Common parameter misspellings and alternatives suggestions.suggestions = {
['accessdate'] = 'access-date', ['accessyear'] = 'access-date', ['autor'] = 'author', ['autore'] = 'author', ['coauthor'] = 'author', ['coauthors'] = 'author', ['began'] = 'date', ['created'] = 'date', ['dateformat'] = 'df', ['dead-url'] = 'url-status', ['deadurl'] = 'url-status', ['ended'] = 'date', ['embargo'] = 'pmc-embargo-date', ['in'] = 'language', ['isbn13'] = 'isbn', ['lastauthoramp'] = 'name-list-style', ['lay-date'] = 'lay-date', ['laysource'] = 'lay-source', ['laysummary'] = 'lay-url', ['layurl'] = 'lay-url', ['mailinglist'] = 'mailing-list', ['no-pp'] = 'no-tracking', ['nopp'] = 'no-tracking', ['notracking'] = 'no-tracking', ['publicationdate'] = 'publication-date', ['publisherid'] = 'publisher', ['registration'] = 'url-access', ['retrieved'] = 'access-date', ['separator'] = 'mode', ['subscription'] = 'url-access', ['template doc demo'] = 'no-tracking', ['trans_chapter'] = 'trans-chapter', ['trans_title'] = 'trans-title',
}
return suggestions