Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Usage  














Module:Is infobox in lead






 / Bân-lâm-gú

Cebuano
فارسی

Bahasa Indonesia

Kurdî

Монгол


Shqip

Simple English
سنڌي
Slovenščina
کوردی
Tagalog

اردو
 

Edit links
 









Module
Talk
 

















Read
View source
View history
 








Tools
   


Actions  



Read
View source
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
Wikidata item
 




Print/export  



Download as PDF
Printable version
 
















Appearance
   

 





Permanently protected module

From Wikipedia, the free encyclopedia
 


Module:Is infobox in lead checks if a given infobox is in the lead, is also the only infobox in the lead, and that there aren't two of that same infobox in the article. If that is the case, it returns true, and if not returns nothing.

This is designed for use by infoboxes that automatically generate short descriptions, to make sure they only generate a short description if they are the lead infobox.

Usage

{{#invoke:Is infobox in lead|main|[Ii]nfobox [Ff]oo [Bb]ar}}

It does not detect redirects which do not match the parameter. Redirects can be handled with an extra invocation per redirect pattern, e.g.:

{{#invoke:Is infobox in lead|main|[Ii]nfobox [Ss]ong}}{{#invoke:Is infobox in lead|main|[Ii]nfobox [Ss]ingle}}

Redirects can be found with WhatLinksHere.

local p = {}

function p.main (frame)
 return p._main (frame.args[1])
end

function p._main (searchString)
 local content = mw.title.getCurrentTitle():getContent()
 local offset = string.find(content, "==", 1 , true)
 if offset then
  local lead = string.sub(content, 1, offset-1)
  if (string.find(lead, searchString)) then
   lead = lead
    :gsub( "{{%s-[Ii]nfobox%s-mapframe", "") --don't check for infobox mapframe
    :gsub( "{{%s-[Ii]nfobo[^}]-%|%s-embed%s-=%s-yes", "") --don't check for embeded infoboxes
    :gsub( "{{%s-[Ii]nfobo[^}]-%|%s-child%s-=%s-yes", "") --don't check for child infoboxes
   local iter = string.gmatch(lead, "{{%s-[Ii]nfobox")
   iter()
   if not iter() then --if able to find two infoboxes in the lead, then don't return true
    local iter2 = string.gmatch(content, searchString)
    iter2()
    if not iter2() then --if able to find two of the specific infobox in the article, then don't return true
     return true
    end
   end
  end
 end
end

return p

Retrieved from "https://en.wikipedia.org/w/index.php?title=Module:Is_infobox_in_lead&oldid=920006409"

Category: 
Infobox modules
Hidden category: 
Wikipedia template-protected modules
 



This page was last edited on 7 October 2019, at 04:35 (UTC).

Text is available under the Creative Commons Attribution-ShareAlike License 4.0; additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc., a non-profit organization.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki