Template:Wikifier macro: Difference between revisions
Jump to navigation
Jump to search
Amwelladmin (talk | contribs) Created page with " ' Wikifier Macro ' ' Selection.Find.ClearFormatting Selection.Find.Replacement.ClearFormatting With Selection.Find .Text = "{{{article}}}" .Repl..." |
Amwelladmin (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
Sub Wikifier | |||
{{Wikifier|{{{template}}}|{{{article}}}}} | |||
End Sub | End Sub |
Latest revision as of 23:29, 19 January 2020
Sub Wikifier With Selection.Find .Text = "{{{article}}}" .Replacement.Text = "{{{{{template}}}|{{{article}}}}}" .Forward = True .Wrap = wdFindContinue .Format = False .MatchCase = True .MatchWholeWord = False .MatchWildcards = False .MatchSoundsLike = False .MatchAllWordForms = False End With Selection.Find.Execute Replace:=wdReplaceAll End Sub