View Single Post
 
Old 10-16-2022, 07:53 PM
see_bee see_bee is offline Windows 10 Office 2010
Novice
 
Join Date: Oct 2022
Posts: 4
see_bee is on a distinguished road
Default

Quote:
Originally Posted by BrianHoard View Post
so want to open it in Word?
I guess the point is, that i only want to spell-check certain text-data in the xml file, not the other parts like the xml element names etc.

The xml goes some kind like

Code:
<Book Title="Name of the book" SomeOtherAttributes="Some data">
  <Series>  
    <Part Title="First Part of the Book" SomeOtherAttributes="Some data">
      <Chapter Title="First chapter" SomeOtherAttributes="Some data">
        <Scene Title="Scene name" SomeOtherAttributes="Some data">
          <p Title="Paragraph name" SomeOtherAttributes="Some data">
              Once <b>uppon</b> a time ... 
          </p>
        </Scene>
      </Chapter> 
    </Part>    
  <Series>
   <SomeOtherElements>
      Some other data
   </SomeOtherElements>
</Book>
The major part to spell check is the data within the <p> element. (Without the formating elements like <b> which must remain after saving the spellchecked data back into the xml file)

This is why i finally dont use word for the spell check.
Reply With Quote