I’m hugely grateful for your “Convert DOCX to HTML Online” tool at wordize.
I’m building a tool using the wordpress database platform which re-introduces public domain textbooks in a question/answer study format for a “socratic-method” style learning experience for groups or individuals.
Using your tool, I converted a 332 page Word.docx document into a 60000 line .html document and though it will be tedious, I will be able to simplify the .css and .html to make managable database record entries for almost every sentence of the text.
For example, the wordize DOCX TO HTML converter converted these lines from Word:
CHAPTER 5: HOW IT WORKS
(Top of Page - 58)
(Ch5~58.1)
`[1] In the author’s experience, how well did the Big Book’s spiritual program of action work?
Rarely have we seen a person fail who has thoroughly followed our path.
<<
to these lines in html
<h1 style="line-height:12pt"
><a name="_Hlk525725493"
><span
>CHAPTER 5: HOW IT WORKS</span
></a
></h1
>
<h2 style="line-height:12pt"`>`<span`>(Top of Page - 58)`</span`>`</h2`>
<p style=“line-height:12pt;”>
<span
style=“font-family:Times-Roman; -aw-import:ignore”> 
</span>
</p> ``<h3 style="line-height:12pt"
><span
>(Ch5~58.1) </span
></h3
>
<p style="page-break-after:avoid; line-height:12pt"`>`<span class="Heading4Char" style="font-family:Times-Roman"`>`[1]`</span`>`<span style="font-family:Times-Roman"`> In the author’s experience, how well did the Big Book’s spiritual program of action work?`</span`>`</p`>
<p style=“line-height:12pt;”>
<span style=“color:#ff0000”>Rarely have we seen a person fail who has thoroughly followed our path.
</span>
</p`>
<<
What I’m writing to ask is:
Do you also have a tool, that might convert the html shown immediately above into something that looks like this:
<style type="text/css"
>
Heading4Char {
font-family: ‘Times New Roman’;
font-size: 12pt;
}
h1,
h2,
p {
line-height: 12pt;
font-family: font-family:Times-Roman;
}
.answer {color:red;}
</style
>
<h1
>CHAPTER 5: HOW IT WORKS</h1
>
<h2
>(Top of Page - 58)</h2
>
<h3
>(Ch5~58.1)</h3
>
<p class="Heading4Char
>[1]In the author’s experience, how well did the Big Book’s spiritual program of action work?</p
>
<p class='answer'
>Rarely have we seen a person fail who has thoroughly followed our path.</p
>
<<
Or might you develop such a tool for future use?
Many kind regards…