I want to get the contents of a wikipedia article using the actual API. Now, I know full well about action=render and action=raw, but I want the most barebones version possible, in plain text. No formatting, no links, preferably no templates, no citations, and no TOC. To give an example, here's an excerpt from the SO page:
<p><b>Stack Overflow</b> is a <a href="http://en.wikipedia.org/wiki/Website" title="Website">website</a>, part of the <a href="http://en.wikipedia.org/wiki/Stack_Exchange_Network" title="Stack Exchange Network">Stack Exchange Network</a>,<sup id="cite_ref-blog_legal_1-0" class="reference"><a href="#cite_note-blog_legal-1"><span>[</span>2<span>]</span></a></sup><sup id="cite_ref-stackapps_legal_2-0" class="reference"><a href="#cite_note-stackapps_legal-2"><span>[</span>3<span>]</span></a></sup> featuring questions and answers on a wide range of topics in <a href="http://en.wikipedia.org/wiki/Computer_programming" title="Computer programming">computer programming</a>.<sup id="cite_ref-secrets_3-0" class="reference"><a href="#cite_note-secrets-3"><span>[</span>4<span>]</span></a></sup><sup id="cite_ref-slashdot_4-0" class="reference"><a href="#cite_note-slashdot-4"><span>[</span>5<span>]</span></a></sup><sup id="cite_ref-google-tech-talks_5-0" class="reference"><a href="#cite_note-google-tech-talks-5"><span>[</span>6<span>]</span></a></sup></p>
This is after all the templates and stuff even. I want to cut those out completely, and find where the real article starts. Then I need to shave this down further to something like:
Stack Overflow is a website, part of the Stack Exchange Network, featuring questions and answers on a wide range of topics in computer programming.
How can I cut through the templating and wiki formatting to get the raw article contents by themselves? This'd be implemented in PHP.