JSFiddle - React, Tailwind, and code Playground
by dabar
HTML
<?php
ob_start();
?>
<div>
<span>text</span>
<a href="<?php echo 'http://www.zika.com' ?>">link</a>
</div>
<?php
$content = ob_get_clean();
echo $content;
by dabar
<?php
ob_start();
?>
<div>
<span>text</span>
<a href="<?php echo 'http://www.zika.com' ?>">link</a>
</div>
<?php
$content = ob_get_clean();
echo $content;