. We should keep them as is. JSON requires escaping double quotes inside strings with backslash. However, the HTML we produce uses double quotes for tags like
? Actually, we use
without quotes. But attributes like class? Not present. So no double quotes inside the content string except for the text itself? The text may have double quotes if we use them, but we don't. So it's safe. But to be safe, we can use single quotes for the HTML string? No, JSON requires double quotes for string delimiters. So we need to escape any double quotes within the string. In our translated text, there are no double quotes. So we can just put the string. However, note that the