Closed mvuidev closed 7 years ago
Hi,
Using he.decode, I need to keep a part of the code encoded. Is it possible ?
For example, I do he.encode on :
<h1>Title</h1> <pre> <p>Code</p> </pre>
So I get :
<h1>Title</h1> <pre> <p>Code</p> </pre>
And here is what I need to get doing a he.decode :
<h1>Title</h1> <pre> <p>Code</p> </pre>
You’ll have to handle that yourself, outside of he. Parse the HTML and only encode/decode the parts you’re interested in.
Hi,
Using he.decode, I need to keep a part of the code encoded. Is it possible ?
For example, I do he.encode on :
So I get :
And here is what I need to get doing a he.decode :