Hi All,
I have an HTML block where I'm using the classes as it is.
When I'm parsing HTML in soup, it normalises spaces and alters the class.
I this example<div class="class_with spaces">Content 1</div>
<div class="class_with spaces">Content 1</div>
When I'm loading this with soup, it converts it into
<div class="class_with spaces">Content 1</div>
How can I preserve spaces while using beautiful soup?
I really appreciate any help is provided.