Could you please explain how & why one might use "SkipParsingBefore2"
I read the release notes, but didn't really understand it.
Thanks.
<HTML>
<HEAD>
<TITLE>Text</TITLE>
</HEAD>
<BODY>
web page text
</BODY>
</HTML>
SkipParsingBefore=<body>
will cut the first part and you will get:
<BODY>
web page text
</BODY>
</HTML>
SkipParsingBefore2=<body>
will cut the first part including the tag and you will get:
web page text
</BODY>
</HTML>
Best regards,
Oleg Chernavin
MP Staff
I never really understood the skipparsing commands at all, so this information has proven helpful. In fact, I'm using the commands now in my projects.
(Btw, in your explanation, it seems the second example should read "SkipParsingBefore2=<body>" not "SkipParsingBefore=<body>" again. Just thought I'd clarify it, in case anyone skimming this is confused.)
Steve K.
Oleg.