forked from neuecc/MarkdownGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MarkdownBuilder.cs
144 lines (124 loc) · 3.24 KB
/
MarkdownBuilder.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using System.Collections.Generic;
using System.Text;
namespace MarkdownWikiGenerator
{
public class MarkdownBuilder
{
public static string MarkdownCodeQuote(string code)
{
return "`" + code + "`";
}
StringBuilder sb = new StringBuilder();
public void Append(string text)
{
sb.Append(text);
}
public void AppendLine()
{
sb.AppendLine();
}
public void AppendLine(string text)
{
sb.AppendLine(text);
}
public void Header(int level, string text)
{
for (int i = 0; i < level; i++)
{
sb.Append("#");
}
sb.Append(" ");
sb.AppendLine(text);
}
public void HeaderWithCode(int level, string code)
{
for (int i = 0; i < level; i++)
{
sb.Append("#");
}
sb.Append(" ");
CodeQuote(code);
sb.AppendLine();
}
public void HeaderWithLink(int level, string text, string url)
{
for (int i = 0; i < level; i++)
{
sb.Append("#");
}
sb.Append(" ");
Link(text, url);
sb.AppendLine();
}
public void Link(string text, string url)
{
sb.Append("[");
sb.Append(text);
sb.Append("]");
sb.Append("(");
sb.Append(url);
sb.Append(")");
}
public void Image(string altText, string imageUrl)
{
sb.Append("!");
Link(altText, imageUrl);
}
public void Code(string language, string code)
{
sb.Append("```");
sb.AppendLine(language);
sb.AppendLine(code);
sb.AppendLine("```");
}
public void CodeQuote(string code)
{
sb.Append("`");
sb.Append(code);
sb.Append("`");
}
public void Table(string[] headers, IEnumerable<string[]> items)
{
sb.Append("| ");
foreach (var item in headers)
{
sb.Append(item);
sb.Append(" | ");
}
sb.AppendLine();
sb.Append("| ");
foreach (var item in headers)
{
sb.Append("---");
sb.Append(" | ");
}
sb.AppendLine();
foreach (var item in items)
{
sb.Append("| ");
foreach (var item2 in item)
{
sb.Append(item2);
sb.Append(" | ");
}
sb.AppendLine();
}
sb.AppendLine();
}
public void List(string text) // nest zero
{
sb.Append("- ");
sb.AppendLine(text);
}
public void ListLink(string text, string url) // nest zero
{
sb.Append("- ");
Link(text, url);
sb.AppendLine();
}
public override string ToString()
{
return sb.ToString();
}
}
}