Chatgpt answer output format

Hi

I want to report a bug related to the answers Chatgpt is given

to say it old fashion back in the good ols days Chatgpt would format its output in a code box (if code was in the answer) or use bullet points. have a press return to start a new sentence etc

Now chatgpt just blurs out one big sentence unorganized and if code is in it it is just unreadable

Example output

Sure! Here’s a simple example of CSS that styles a card component with a title, image, and description: ### Example CSS css /* Card container */ .card { width: 300px; /* Set the width of the card */ border: 1px solid #ddd; /* Light border */ border-radius: 8px; /* Rounded corners */ overflow: hidden; /* Prevent overflow of child elements */ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */ transition: transform 0.3s; /* Smooth hover effect */ } /* Card image */ .card img { width: 100%; /* Full width */ height: auto; /* Maintain aspect ratio */ } /* Card title */ .card h2 { font-size: 1.5em; /* Font size for the title */ margin: 16px; /* Margin around the title */ color: #333; /* Dark text color */ } /* Card description */ .card p { margin: 0 16px 16px; /* Margin for description */ color: #666; /* Lighter text color */ } /* Hover effect */ .card:hover { transform: scale(1.05); /* Slightly enlarge the card */ } ### Example HTML Here’s how you can structure the HTML to use with the above CSS: html <div class="card"> <img src="your-image-url.jpg" alt="Card Image"> <h2>Card Title</h2> <p>This is a brief description of the card content.</p> </div> ### Explanation: - Card Container: The .card class styles the overall card, including size, border, shadow, and hover effects. - Image: The image is responsive, filling the width of the card. - Title and Description: Styled with margins and colors for clear readability. Feel free to adjust the styles as needed! Let me know if you have specific requirements or need another example.

Can you please fix this bug and make the answers normal again

Thanks in advance and understanding

Kind regards