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
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)