-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
81 lines (71 loc) · 1.97 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace MarkdownSharpGo
{
public enum Output
{
console, launch, file
}
public class CommandObject
{
public string File { get; set; }
public Output Output { get; set; }
}
class Program
{
static void Main(string[] args)
{
try
{
var command = Args.Configuration.Configure<CommandObject>().CreateAndBind(args);
if(command.File != null)
{
var m = new MarkdownSharp.Markdown();
var output = m.Transform(FileContents(command.File));
switch (command.Output)
{
case Output.file:
File.WriteAllText(Path.ChangeExtension(command.File, "html"), output);
break;
case Output.launch:
var tempfile = Path.ChangeExtension(Path.GetTempFileName(), "html");
File.WriteAllText(tempfile, output);
System.Diagnostics.Process.Start(tempfile);
break;
case Output.console:
Console.WriteLine(output);
break;
}
}
else
{
Console.WriteLine("Usage Example:");
Console.WriteLine("mono MarkdownSharpGo.exe /f <filename> [optional] /o launch | /o file");
}
}
catch (FormatException e)
{
Console.WriteLine(e);
}
catch (Exception e)
{
Console.WriteLine(e);
}
}
static string FileContents(string filename)
{
try
{
return File.ReadAllText(filename);
}
catch (FileNotFoundException e)
{
Console.WriteLine (e);
return "";
}
}
}
}