public Task Show(string markdown)
        {
            var path = fileSystemOperations.GetTempFileName() + ".md";

            fileSystemOperations.WriteAllText(path, markdown);
            return(shellOpen.Open(path));
        }