I am trying to convert a conversation I downloaded from Wikipedia into XML. I used the special export to get the page in XML format... that works great until I get to the main conversation.
<conversation>
{{PersonA|Cheese}}
{{PersonB|I like it too...}}
{{PersonA|Cheese?}}
</conversation>
Thats not the real conversation... anyway, I'm wondering whats the easiest way to convert a MASSIVE conversation like that into valid XML?
<conversation>
<personA>Cheese</personA>
<personB>I like it too...</personB>
<personA>Cheese?</personA>
</conversation>
Thanks, this is far too long to do it manually. I'm guessing regex can help out... somehow.