another rev of text parsing.
diff --git a/tinyxml2.h b/tinyxml2.h
index 2ff58c9..23f21a5 100644
--- a/tinyxml2.h
+++ b/tinyxml2.h
@@ -68,13 +68,13 @@
}
return false;
}
+ inline static int IsUTF8Continuation( char p ) { return p & 0x80; }
/* Parses text. (Not a text node.)
- [ ] EOL normalization.
- - [x] Trim leading whitespace
- - [ ] Trim trailing whitespace.
- - [ ] Leaves inner whitespace
- - [ ] Inserts one space between lines.
+ - [X] Do not trim leading whitespace
+ - [X] Do not trim trailing whitespace.
+ - [X] Leaves inner whitespace
*/
const char* ParseText( char* in, const char* endTag, char** next );