Sandbox: Difference between revisions

From The Jolly Contrarian
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{manual|GMSLA|2010|1|Paragraph}}
{{manual|GMSLA||1|Paragraph}}





Revision as of 22:15, 23 January 2020

Template:Code GMSLA
A Jolly Contrarian owner’s manual™

Resources and navigation

Paragraph 1 in a Nutshell

Use at your own risk, campers!
{{Nutshell Template:Shortcode GMSLA 1}}
[[Template:Nutshell Template:Shortcode GMSLA 1|view template]]

Full text of Paragraph 1

[[Template:Template:Longcode GMSLA 1|view template]]

{{m comp Template:Shortcode GMSLA|1|{{{5}}}|Paragraph }}

Comments? Questions? Suggestions? Requests? Insults? We’d love to 📧 hear from you.
Sign up for our newsletter.

{{m comm {{{6}}}|Template:Shortcode GMSLA 1|Template:Prov GMSLA }}

See also

{{m sa Template:Shortcode GMSLA 1}}

[[Template:m sa Template:Shortcode GMSLA 1|Template]]

References

[[category:Template:Shortcode GMSLA ]]



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
Sub Wikifier definition 
 Selection.Find.ClearFormatting
   Selection.Find.Replacement.ClearFormatting
   With Selection.Find
       .Text = ChrW(8220) & "([a-z,A-Z,0-9, ]{1,})" & ChrW(8221)
       .Replacement.Text = ChrW(8220) & "'''{{nycsaprov|\1}}'''" & ChrW(8221 _
           )
       .Forward = True
       .Wrap = wdFindAsk
       .Format = False
       .MatchCase = False
       .MatchWholeWord = False
       .MatchAllWordForms = False
       .MatchSoundsLike = False
       .MatchWildcards = True
   End With
   Selection.Find.Execute Replace:=wdReplaceAll
End Sub
Sub Paragrapher()
   Selection.Find.ClearFormatting
   Selection.Find.Replacement.ClearFormatting
   With Selection.Find
       .Text = "Paragraph ([0-9\(\)][!.,;: ]{1,})"
       .Replacement.Text = "Paragraph {{nycsaprov|\1}}"
       .Forward = True
       .Wrap = wdFindAsk
       .Format = False
       .MatchCase = False
       .MatchWholeWord = False
       .MatchAllWordForms = False
       .MatchSoundsLike = False
       .MatchWildcards = True
   End With
   Selection.Find.Execute Replace:=wdReplaceAll
End Sub