PHPWord导出包括HTML标记

I am going to try to explain this as best I can so please bear with me.

I am using Laravel and PHPWord.

I have a form that gets filled out that stores data, in my form I am using certain jquery plugins that makes it look a bit more nice for the user to fill in the form. The plugin I am specifically referring to is bootstrap-wysihtml5 and it looks great.

Now I know that the editor is creating the HTML tags and that the data is actually being stored in the DB with the HTML tags.

Hereafter the user can then download this form in a word document format**(PHPWord)**. It exports everything very nicely as well but my problem comes in when viewing the data the user has filled in.

In the word document you will have data written such as:
<div> <p>This is the data</p> </div>

So basically all I want to do is prevent the HTML tags from being exported and displayed in the word document but I am not too sure on how to achieve this.

Any assistance will be greatly appreciated and I am more than willing to supply relevant code that will help solve the question.