Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Humanipedia
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
Module:ApplyLinkAnnotations
Module
Discussion
English
Read
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local p = {}; local regex = "(:*%**)%*%s*%[%[([^%]|:][^%]:]*[^%]|:])%]%]%s*" local repl = "%1* {{Annotated link |%2}}" function p.replaceLinksInUnorderedList(markup) -- provided for convenience to make console testing easier for development -- -- matches any wikilinks that are -- 1. at the beginning of a list item -- 2. with no existing annotation (or any text) following them -- -- must run twice because match utilizes the newlines on *both* sides -- of wikilinks and thus, "consumes" those chars during the first match -- such that every-other line is ineligible for matching until the second -- run. (which does the same thing but for all the other lines) -- Test case(s?): -- =p.replaceLinksInUnorderedList("\n*[[TEst|teST]] \n:* [[name]]\n::*[[link]] - with existing annotation\n::* [[for|a friend]] \n*[[t]]\n") local anls, cnt1, cnt2 -- pattern and replacement updated locally to require newlines -- on both sides local regex_line = '\n' .. regex .. '\n' local repl_line = '\n' .. repl .. '\n' anls, cnt1 = mw.ustring.gsub(markup, regex_line, repl_line) anls, cnt2 = mw.ustring.gsub(anls, regex_line, repl_line) mw.log("Replaced " .. cnt1+cnt2 .. " links without existing annotations") return anls end function p.bySubstitutionInUnorderedList(frame) return p.replaceLinksInUnorderedList(frame.args[1]) end function p._testline(line) -- testing function used to evaluate a single line against the pattern(regex) -- signature designed to accommodate Module:UnitTests:equals -- so frame args are NOT extracted, a raw string is expected local res, cnt = mw.ustring.gsub(line, '^'..regex..'$', repl) return res end return p
Summary:
Please note that all contributions to Humanipedia may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Humanipedia:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Templates used on this page:
Template:Sandbox other
(
edit
)
Template:Template link expanded
(
edit
)
Template:Tlx
(
edit
)
Module:ApplyLinkAnnotations/doc
(
edit
)
Module:Arguments
(
edit
)
Module:String
(
edit
)
Module:Template link general
(
edit
)