<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://elanthipedia.play.net/index.php?action=history&amp;feed=atom&amp;title=User%3ADR-CORDULIA%2FResources%2FFormatting_Macro</id>
	<title>User:DR-CORDULIA/Resources/Formatting Macro - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://elanthipedia.play.net/index.php?action=history&amp;feed=atom&amp;title=User%3ADR-CORDULIA%2FResources%2FFormatting_Macro"/>
	<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=User:DR-CORDULIA/Resources/Formatting_Macro&amp;action=history"/>
	<updated>2026-04-15T12:42:57Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.39.12</generator>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=User:DR-CORDULIA/Resources/Formatting_Macro&amp;diff=651718&amp;oldid=prev</id>
		<title>DR-CORDULIA: Created page with &quot;==Formatting Macro for Word==  This Microsoft Word macro formats text to improve compatibility with DR and compliance with DR’s standard of putting two spaces between sentences. The macro will: *replace tabs with word spaces *delete excess word spacing (three or more spaces) *ensure there is only one space between words *ensure there are two spaces between sentences *replace curly quotes and apostrophes (known as “smart quotes” in Word) with straight quotes *replac...&quot;</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=User:DR-CORDULIA/Resources/Formatting_Macro&amp;diff=651718&amp;oldid=prev"/>
		<updated>2024-09-23T23:27:08Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;==Formatting Macro for Word==  This Microsoft Word macro formats text to improve compatibility with DR and compliance with DR’s standard of putting two spaces between sentences. The macro will: *replace tabs with word spaces *delete excess word spacing (three or more spaces) *ensure there is only one space between words *ensure there are two spaces between sentences *replace curly quotes and apostrophes (known as “smart quotes” in Word) with straight quotes *replac...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Formatting Macro for Word==&lt;br /&gt;
&lt;br /&gt;
This Microsoft Word macro formats text to improve compatibility with DR and compliance with DR’s standard of putting two spaces between sentences. The macro will:&lt;br /&gt;
*replace tabs with word spaces&lt;br /&gt;
*delete excess word spacing (three or more spaces)&lt;br /&gt;
*ensure there is only one space between words&lt;br /&gt;
*ensure there are two spaces between sentences&lt;br /&gt;
*replace curly quotes and apostrophes (known as “smart quotes” in Word) with straight quotes&lt;br /&gt;
*replace em dashes (—) with typewriter approximations (--)&lt;br /&gt;
*replace en dashes (–) with typewriter approximations (-)&lt;br /&gt;
*replace ellipses (…) with typewriter approximations (...)&lt;br /&gt;
&lt;br /&gt;
How to install this macro:&lt;br /&gt;
#In Microsoft Word, click View the view tab on the ribbon.&lt;br /&gt;
#Click “Macros.”&lt;br /&gt;
#Where it says “Macro name,” type “Typewriter.”&lt;br /&gt;
#Click “Create.”&lt;br /&gt;
#Copy and paste this macro, overwriting the entire section that begins with “Sub Typewriter()” and ends with “End Sub.”&lt;br /&gt;
#In the File menu, select “Save Normal.”&lt;br /&gt;
&lt;br /&gt;
How to assign a keyboard shortcut to this macro:&lt;br /&gt;
#In Microsoft Word, go to File → Options → Customize Ribbon.&lt;br /&gt;
#Where it says “Keyboard Shortcuts,” Click “Customize.”&lt;br /&gt;
#Near the bottom of the “Categories” menu, select “Macros.”&lt;br /&gt;
#You should see your new Typewriter macro listed to the right. Select it.&lt;br /&gt;
#Put your cursor in the box that says “Press new shortcut key.”&lt;br /&gt;
#Input the desired hotkey. I recommend using something that Word has not already assigned to another function. (I use Shift+F8.)&lt;br /&gt;
#Click “Close.”&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;Sub Typewriter()&lt;br /&gt;
&amp;#039;&lt;br /&gt;
&amp;#039; Typewriter Macro&lt;br /&gt;
&amp;#039;&lt;br /&gt;
&amp;#039;&lt;br /&gt;
    Selection.HomeKey Unit:=wdStory&lt;br /&gt;
    With Options&lt;br /&gt;
        .AutoFormatAsYouTypeApplyHeadings = False&lt;br /&gt;
        .AutoFormatAsYouTypeApplyBorders = True&lt;br /&gt;
        .AutoFormatAsYouTypeApplyBulletedLists = False&lt;br /&gt;
        .AutoFormatAsYouTypeApplyNumberedLists = True&lt;br /&gt;
        .AutoFormatAsYouTypeApplyTables = True&lt;br /&gt;
        .AutoFormatAsYouTypeReplaceQuotes = False&lt;br /&gt;
        .AutoFormatAsYouTypeReplaceSymbols = False&lt;br /&gt;
        .AutoFormatAsYouTypeReplaceOrdinals = False&lt;br /&gt;
        .AutoFormatAsYouTypeReplaceFractions = False&lt;br /&gt;
        .AutoFormatAsYouTypeReplacePlainTextEmphasis = False&lt;br /&gt;
        .AutoFormatAsYouTypeReplaceHyperlinks = False&lt;br /&gt;
        .AutoFormatAsYouTypeFormatListItemBeginning = True&lt;br /&gt;
        .AutoFormatAsYouTypeDefineStyles = False&lt;br /&gt;
        .TabIndentKey = True&lt;br /&gt;
    End With&lt;br /&gt;
    With AutoCorrect&lt;br /&gt;
        .CorrectInitialCaps = False&lt;br /&gt;
        .CorrectSentenceCaps = False&lt;br /&gt;
        .CorrectDays = False&lt;br /&gt;
        .CorrectCapsLock = True&lt;br /&gt;
        .ReplaceText = True&lt;br /&gt;
        .ReplaceTextFromSpellingChecker = False&lt;br /&gt;
        .CorrectKeyboardSetting = False&lt;br /&gt;
        .DisplayAutoCorrectOptions = True&lt;br /&gt;
        .CorrectTableCells = False&lt;br /&gt;
    End With&lt;br /&gt;
    With Options&lt;br /&gt;
        .AutoFormatApplyHeadings = True&lt;br /&gt;
        .AutoFormatApplyLists = True&lt;br /&gt;
        .AutoFormatApplyBulletedLists = False&lt;br /&gt;
        .AutoFormatApplyOtherParas = True&lt;br /&gt;
        .AutoFormatReplaceQuotes = False&lt;br /&gt;
        .AutoFormatReplaceSymbols = False&lt;br /&gt;
        .AutoFormatReplaceOrdinals = False&lt;br /&gt;
        .AutoFormatReplaceFractions = False&lt;br /&gt;
        .AutoFormatReplacePlainTextEmphasis = False&lt;br /&gt;
        .AutoFormatReplaceHyperlinks = False&lt;br /&gt;
        .AutoFormatPreserveStyles = True&lt;br /&gt;
        .AutoFormatPlainTextWordMail = True&lt;br /&gt;
    End With&lt;br /&gt;
    Options.LabelSmartTags = False&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;^t&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;  &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;&amp;#039;&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;&amp;#039;&amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;&amp;quot;&amp;quot;&amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;. &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;.  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;.&amp;quot;&amp;quot; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;.&amp;quot;&amp;quot;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;.&amp;#039; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;.&amp;#039;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;.) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;.)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;.&amp;quot;&amp;quot;) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;.&amp;quot;&amp;quot;)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;? &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;?  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;?&amp;quot;&amp;quot; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;?&amp;quot;&amp;quot;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;?&amp;#039; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;?&amp;#039;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;?) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;?)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;?&amp;quot;&amp;quot;) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;?&amp;quot;&amp;quot;)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;! &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;!  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;!&amp;quot;&amp;quot; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;!&amp;quot;&amp;quot;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;!&amp;#039; &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;!&amp;#039;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;!) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;!)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;!&amp;quot;&amp;quot;) &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;!&amp;quot;&amp;quot;)  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;—&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; -- &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;–&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;-&amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;  --&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; --&amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;--  &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;-- &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;…&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; ... &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;  ...&amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot; ...&amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;...  &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;... &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    With Selection.Find&lt;br /&gt;
        .Text = &amp;quot;   &amp;quot;&lt;br /&gt;
        .Replacement.Text = &amp;quot;  &amp;quot;&lt;br /&gt;
        .Forward = True&lt;br /&gt;
        .Wrap = wdFindContinue&lt;br /&gt;
        .Format = False&lt;br /&gt;
        .MatchCase = False&lt;br /&gt;
        .MatchWholeWord = False&lt;br /&gt;
        .MatchWildcards = False&lt;br /&gt;
        .MatchSoundsLike = False&lt;br /&gt;
        .MatchAllWordForms = False&lt;br /&gt;
    End With&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
    Selection.Find.Execute Replace:=wdReplaceAll&lt;br /&gt;
End Sub&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>DR-CORDULIA</name></author>
	</entry>
</feed>