Hello,
I have a set of HTML codes and I am wondering how can I wrap a code such that it is interpreted correct by the browser and independent of the others.
I think I should give an example:
x = <a href="stackoverflow.com">Something
y = <b>Else</b>
I print x, then y and the browser will consider that y is part of the link defined in x. How can I force the browser to interpret x independent of y; that's is, how can I wrap x and y?
I don't know if it is relevant, but I work in Python.
Thanks!