but anyway it should be documented. In theory it is enough to never emit <e></e> but in practice it can be useful to force a closing tag (e.g. when emitting a HTML <script> tag).
This also applies to XML reading:
echo "<root><e/><e></e></root>" | oq -i xml .
{ "e": [ null, "" ] }
I'd expect
but anyway it should be documented. In theory it is enough to never emit
<e></e>
but in practice it can be useful to force a closing tag (e.g. when emitting a HTML<script>
tag).This also applies to XML reading: