After the rework, line breaks (empty lines) are lost when copy pasting

I’ve noticed an issue after the recent rework of the Playground. When I copy text from the output section, all the line breaks (empty lines) are lost. This is particularly problematic for me because I often need to copy code snippets or formatted text, and the lack of proper spacing makes it difficult to read and use.

For example, if the output in the Playground looks like this:

def hello_world():
    print("Hello, world!")

hello_world()

When I copy and paste it into my text editor, it ends up like this:

``` def hello_world(): print("Hello, world!") hello_world() ```

As you can see, the empty line between the function definition and the function call is missing. This issue wasn’t present before the rework, so I’m wondering if anyone else is experiencing the same problem or if there’s a workaround.

1 Like

Also now having issues with line breaks being removed in the message text boxes in the playground when editing or pasting.

I also noticed this problem. Responses from playground used to be copied nicely into .MD files, and now it’s a mess

Same problem. Problematic to write good content.