Hello everyone,<br><br>I am trying to obtain through a web request from an application i&#39;m working on the raw wikitext version of an arbitrary Wikipedia article. However, i prefer the templates to be already expanded into their constituent wikitext and/or HTML, and from what i read on the Wikimedia API documentation this should be done by appending &quot;&amp;templates=expand&quot; to the query string; thus, if I wanted the English version of the article about Barcelona in wikitext with template expansion, the URL would be: <a href="http://en.wikipedia.org/w/index.php?action=raw&amp;title=Barcelona&amp;templates=expand">http://en.wikipedia.org/w/index.php?action=raw&amp;title=Barcelona&amp;templates=expand</a> .<br>
However, i soon found out that not all of the templates are actually expanded, the exception being those templates enclosed in wiki tags, which are left unexpanded (perhaps the most common example being {{cite ...}} templates inside &lt;ref&gt;&lt;/ref&gt; tags).<br>
<br>I eventually learned that the API provides an individual template expansion module, accessible through <span>...api.php?action=expandtemplates&amp;text={{template_to_expand}} . This was not really the solution I hoped for actually, since it is impractical for long templates (i assume there&#39;s a limit imposed on that query string) and for each of the unexpanded template i&#39;d have to send a separate request to the server, which could prove highly expensive in terms of performance. I&#39;ve also seen there&#39;s the special Wikipedia template expansion page (<a href="http://en.wikipedia.org/wiki/Special:ExpandTemplates">http://en.wikipedia.org/wiki/Special:ExpandTemplates</a> ), but I don&#39;t know if and how I could access its functionality from my application and how I could use it for several templates at once.<br>
<br>Could anyone please suggest a solution for expanding all the templates or at least a viable workaround for this issue ?<br>Thanks in advance,<br>Gabriel S.<br></span>