$section=$phpWord->addSection($sectionStyle);
$textrun = $section->addTextRun();
$textrun ->addTextBreak(0);
$text2=html_entity_decode($text2);
$text =$text2;
$fontStyle = array('name'=>$font, 'size'=>$font_size, 'color'=>$font_color, 'bold'=>FALSE, 'italic'=>FALSE);
$parStyle = array('align'=>'left','spaceBefore'=>100);
$textrun->addText(htmlspecialchars($text),$fontStyle,$parStyle);