Is there a .net api that can do this? I saw Pandoc has a standalone exe that I could wrap but I'd rather not if there is something already out there. Any suggestions?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Here's the code I used to wrap pandoc. I haven't seen any other decent methods so far unfortunately.

        public string Convert(string source)
    {
        string processName = @"C:\Program Files\Pandoc\bin\pandoc.exe";
        string args = String.Format(@"-r html -t mediawiki");

        ProcessStartInfo psi = new ProcessStartInfo(processName, args);

        psi.RedirectStandardOutput = true;
        psi.RedirectStandardInput = true;

        Process p = new Process();
        p.StartInfo = psi;
        psi.UseShellExecute = false;
        p.Start();

        string outputString = "";
        byte[] inputBuffer = ASCIIEncoding.UTF8.GetBytes(source);
        p.StandardInput.BaseStream.Write(inputBuffer, 0, inputBuffer.Length);
        p.StandardInput.Close();

        System.Threading.Thread.Sleep(2000);
        using (System.IO.StreamReader sr = new System.IO.StreamReader(p.StandardOutput.BaseStream))
        {

            outputString = sr.ReadToEnd();
        }


        return outputString;
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.