NppTidy2
NppTidy2 copied to clipboard
Apostrophe converted to #39; JavaScript inside HTML
Hi When I apply: Plugin > Tudy2 > Tidy (Config 1) to my notedpad++ project which is having JavaScript Code. It convert Apostrophe ( ' ) to ( #39; ). Seems like it is trying to encode it to something.
Before Applying Tidy2:
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('div').bind('click', function( event ){
alert('Hi there!');
});
});
</script>
After Applying Tidy2:
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('div').bind('click', function( event ){
alert('Hi there!');
});
});
</script>
Thank You
- FAWAD