I'm trying to finding double or triple (or more) negations in sentences/paragraphs in some 2MiB of Markdown documents.
The documents in question can be found here:
https://svn.apache.org/repos/asf/trafficserver/site/trunk/content/docs/trunk/
They are the documentation of a project I work with. The goal is to make it more accessible.
Since the CMS that turns this Markdown (on commit) into HTML is written in Perl, it might be good if the solution was in Perl too, so it could be integrated into the build-process.
Lingua::ENnamespace on CPAN may have some modules that can be of help, but I'm not that optimistic. This oneliner may help with manual review:perl -nE"BEGIN{\$/=''}print if/\bnot\b|n't\b/i"– amon Nov 17 '12 at 14:07