Open GoogleCodeExporter opened 8 years ago
To add, the comments look like this, and it seems the parser is having issues
with
the multi-line comments:
<!--
The column on the intermediary table that links back
to the primary key on the main table
-->
Original comment by brian...@gmail.com
on 19 Mar 2008 at 3:26
Hi the Regex for comments in XML stumbles upon newlines. Use this one instead:
// Match comments
// (\<|<)!--\s*(\s|.)*?\s*--(\>|>)
this.GetMatches(new RegExp('(\<|<)!--\\s*(\\s|.)*?\\s*--(\>|>)', 'gm'),
'comments');
Original comment by yoshtec
on 15 Nov 2008 at 10:03
Original issue reported on code.google.com by
brian...@gmail.com
on 19 Mar 2008 at 3:22