Update htmlparse.h
This commit is contained in:
parent
dbbe6a5b82
commit
c04d1fbbc3
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ void htmlparse(){
|
||||||
c = fileStr[i];
|
c = fileStr[i];
|
||||||
|
|
||||||
//use a rolling window of 100 bytes to detect elements, ignore control characters and spaces
|
//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++){
|
for(int j=0;j<window_len-1;j++){
|
||||||
window[j] = window[j+1];
|
window[j] = window[j+1];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue