I'm I have a batch of XML and SGML documents (about 7000 of them). I want something that'll convert them into structured Microsoft Word Documents. I've been reading online for 2 days on how to do this and am more confused than when I started.
I see you can use Open XML SDK and C# to create it with Visual Studio, via this answer here: StackOverflow answer, which links to this Using XSLT and Open XML SDK. However this is for 7 years ago. I'm not sure if this is still current, and I don't know this is definitely what I'll need.
Also the documents I'm converting from, the tags themselves are in Swedish. So I'm guessing I'll need something to read and convert the tags to english, then turn it into a Word XML format.
I can write in C# and C++, and could probably figure my way around most scripting languages if I need to for this, but have zero experience with creating word documents from code. I understand I might need to make a DTD or a XSLT and possibly use Word XML (I've learnt about these in the past 2 days), and use that in some Visual Studio project.
However I have no idea how to actually go about this. Can someone please steer me in the right direction?
Thanks