Update htmlparse.h

This commit is contained in:
wibyweb 2022-10-17 21:15:39 -04:00 committed by GitHub
parent dbbe6a5b82
commit c04d1fbbc3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ void htmlparse(){
c = fileStr[i];
//use a rolling window of 100 bytes to detect elements, ignore control characters and spaces
if(c != 127 && c > 15){
if(c != 127 && c > 15 && c !=32){
for(int j=0;j<window_len-1;j++){
window[j] = window[j+1];
}