In the kotlinx documentation it mentions Streaming...
# kotlinx-html
a
In the kotlinx documentation it mentions Streaming to System.out for example. Does the appendHTML() function append each html tag on the fly i.e. line by line? For example if I generate the following html using kotlinx.html
Copy code
<div class="a">
  <div class="b">
    <div class="c"></div>
    <div class="c"></div>
  </div>
</div>
How does appendHTML() work? Does it wait for a tag to be closed before appending or does it append everytime it encounters a new tag (the latter behaviour would be desired for my use case)