I am using this code to generate an automatic table of contents in docx
<w:sdt>
<w:sdtPr>
<w:alias w:val="Summary" />
</w:sdtPr>
<w:sdtContent>
<w:p>
<w:r>
<w:fldChar w:fldCharType="begin" w:dirty="true" />
<w:instrText xml:space="preserve">TOC h o "1-5"</w:instrText>
<w:fldChar w:fldCharType="separate" />
</w:r>
</w:p>
<w:p>
<w:r>
<w:fldChar w:fldCharType="end" />
</w:r>
</w:p>
</w:sdtContent>
</w:sdt>
And so far everything is fine. The problem is that the table of contents text that is generated when opening Microsoft Word is in bold. I don't want it to be in bold.