Index: xword/ContentFiltering/Office/Word/Cleaners/HeadSectionRemover.cs =================================================================== --- xword/ContentFiltering/Office/Word/Cleaners/HeadSectionRemover.cs (revision 22551) +++ xword/ContentFiltering/Office/Word/Cleaners/HeadSectionRemover.cs (working copy) @@ -29,7 +29,7 @@ /// The HTML source without the head section. public string Clean(string htmlSource) { - return htmlUtil.RemoveSpecificTagContent(htmlSource, "", ""); + return htmlUtil.RemoveSpecificTagContent(htmlSource, ""); } #endregion IHTMLCleaner Members Index: xword/ContentFiltering/Test/Office/Word/Cleaners/HeadSectionRemoverTest.cs =================================================================== --- xword/ContentFiltering/Test/Office/Word/Cleaners/HeadSectionRemoverTest.cs (revision 22551) +++ xword/ContentFiltering/Test/Office/Word/Cleaners/HeadSectionRemoverTest.cs (working copy) @@ -28,7 +28,7 @@ [TestFixtureSetUp] public void TestSetup() { - initialHTML = "Title" + initialHTML = "Title" + "

Content

"; expectedHTML = "

Content

";