A code snippet as follows:
<meta name="description" content="A brief description about the app / page">
Will render empty when exported to HTML. This is also true for any XML/HTML-like elements.
To fix this, the < > symbols needs to be replaced(parsed) to < > like so output will be:
<code>
< meta name="description" content="A brief description about the app / page" >
</code>