Template:FormatName: Difference between revisions

mNo edit summary
mNo edit summary
Line 1: Line 1:
{{#lua:
{{#lua:
   name = stdin:gmatch("[%S]+")
   name = stdin:match("[%S]+")
   print(name)
   print(name)
|{{{1|foo}}}}}
|{{{1|foo}}}}}

Revision as of 07:59, 19 January 2010

{{#lua:

 name = stdin:match("[%S]+")
 print(name)

|foo}}