Copying and Pasting

Please use caution when copying and pasting content into BSOE web sites.

When you copy and paste information from a Word document, another web site, a PDF file, or any other electronic media, often times what you copy is polluted with extra formatting information that causes problems on the BSOE web sites.

The best way to avoid this problem is to copy the content from the Word document or other source and first paste it into Notepad, and then re-copy the content from Notepad and paste it into the BSOE web site editor.  This method will strip all the extra formatting information from the content and allow a clean paste into the web site.  Once the data is pasted, you are able to then go in and edit the page like you normally would.

For example, here is the HTML code for a sentence copied and pasted from a Word document:

<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" LatentStyleCount="156"> </w:LatentStyles> </xml><![endif]--> &lt;!--  /* Font Definitions */  @font-face     {font-family:Tahoma;     panose-1:2 11 6 4 3 5 4 4 2 4;     mso-font-charset:0;     mso-generic-font-family:swiss;     mso-font-pitch:variable;     mso-font-signature:1627421319 -2147483648 8 0 66047 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal     {mso-style-parent:"";     margin:0in;     margin-bottom:.0001pt;     mso-pagination:widow-orphan;     font-size:11.0pt;     mso-bidi-font-size:12.0pt;     font-family:Tahoma;     mso-fareast-font-family:"Times New Roman";     mso-bidi-font-family:"Times New Roman";} @page Section1     {size:8.5in 11.0in;     margin:1.0in 1.0in 1.0in 1.0in;     mso-header-margin:.5in;     mso-footer-margin:.5in;     mso-paper-source:0;} div.Section1     {page:Section1;} --&gt; <!--[if gte mso 10]>
<style>
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Table Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-parent:"";
mso-padding-alt:0in 5.4pt 0in 5.4pt;
mso-para-margin:0in;
mso-para-margin-bottom:.0001pt;
mso-pagination:widow-orphan;
font-size:10.0pt;
font-family:"Times New Roman";
mso-ansi-language:#0400;
mso-fareast-language:#0400;
mso-bidi-language:#0400;}
</style>
<![endif]-->
<p class="MsoNormal">This is my test sentence to show how many extra things Word puts into a simple sentence like this.</p>
</p>

And here's the code for that same sentence after it's been cleaned using the method above:

<p>This is my test sentence to show how many extra things Word puts into a simple sentence like this.</p>

As you can see, Word puts in a lot of extra code that just confuses web browsers and other programs that use our web sites.  So, please make sure you clean your content using the Notepad method described above.