forked from NoahRic/MarkdownMode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MarkdownParser.cs
562 lines (445 loc) · 22.7 KB
/
MarkdownParser.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
/* This adds a parser interface on top of MarkdownSharp's Markdown.cs.
* In addition to the original purpose of translating Markdown into html (textually), this also adds
* a parsing interface over the translation logic, so we can use it for purposes other than generating html
* (such as the markdown classifier).
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using MarkdownSharp;
using Microsoft.VisualStudio.Text;
namespace MarkdownMode
{
static class RegexExtensions
{
public static string ReplaceWithDummy(this Regex regex, string text, Action<Match> evaluator)
{
return regex.Replace(text, match =>
{
evaluator(match);
return new string(MarkdownParser._dummyChar, match.Length);
});
}
}
static class MarkdownParser
{
internal const char _dummyChar = '~';
// The regexes below are generally copies of regexes in Markdown.cs, except that they have been modified to allow for
// endlines other than \n.
const string ParagraphEndRegexPart = @"(?:(?:(?:\r\n){1,}|\r{1,}|\n{1,})|\Z)";
const string ListItemEndlinePart = @"(?:(?:\r\n){1,2}|\r{1,2}|\n{1,2})";
const string EndlinePart = @"(?:(?:\r\n)|\r|\n)";
static Regex UlListItemRegex = new Regex(
@"(\n)? # leading line = $1
(^[ \t]*) # leading whitespace = $2
(" + Markdown.MarkerUL + @") [ \t]+ # list marker = $3
((?s:.+?) # list item text = $4
(" + ListItemEndlinePart + @"))
(?= " + EndlinePart + @"* (\z | \2 (" + Markdown.MarkerUL + @") [ \t]+))", RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline);
static Regex OlListItemRegex = new Regex(@"
(\n)? # leading line = $1
(^[ \t]*) # leading whitespace = $2
(" + Markdown.MarkerOL + @") [ \t]+ # list marker = $3
((?s:.+?) # list item text = $4
(" + ListItemEndlinePart + @"))
(?= " + EndlinePart + @"* (\z | \2 (" + Markdown.MarkerOL + @") [ \t]+))", RegexOptions.Compiled | RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline);
const string ParagraphStartRegexPart = @"
(?:
(?<= # Starts with two consecutive blank lines (ignore whitespace between them)
" + EndlinePart + @"
[ \t]*
" + EndlinePart + @"
)
| # ... or it starts at the beginning of the string, followed by an optional newline
\A" + EndlinePart + @"?)";
static Regex ParserListTopLevelRegex = new Regex(ParagraphStartRegexPart + Markdown.WholeListRegex,
RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled);
internal static Regex ParserCodeBlockRegex = new Regex(string.Format(ParagraphStartRegexPart + @"
( # $1 = the code block -- one or more lines, starting with a space/tab
(?:
(?:[ ]{{{0}}} | \t) # Lines must start with a tab or a tab-width of spaces
.*\n+
)+
)
((?=^[ ]{{0,{0}}}\S)|{1}) # Lookahead for non-space at line-start, or end of doc",
Markdown.TabWidth, ParagraphEndRegexPart), RegexOptions.Multiline | RegexOptions.IgnorePatternWhitespace | RegexOptions.Compiled);
#region Markdown public parser interface
/// <summary>
/// Parses the given Markdown-formatted paragraph into tokens.
/// </summary>
/// <param name="text">The paragraph of text to parse</param>
/// <param name="offset">An optional offset that all the generated tokens will use.</param>
/// <returns>An enumeration of tokens parsed from the text.</returns>
public static IEnumerable<Token> ParseMarkdownParagraph(string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
if (text.Trim().Length == 0)
return tokens;
// First, write over the html tags with dummy characters so we ignore them
text = DestroyHtmlTags(text);
// Parse the paragraph into parts. Note that the text will be modified in each step, but
// characters will not be added or removed (so that the token locations as offsets into the text
// will be accurate to the original text).
tokens.AddRange(ParseHeaders(ref text, offset));
tokens.AddRange(ParseHorizontalRules(ref text, offset));
tokens.AddRange(ParseLists(ref text, offset));
tokens.AddRange(ParseCodeBlocks(ref text, offset));
tokens.AddRange(ParseBlockQuotes(ref text, offset));
// And, finally, the most important one: splitting into lines and parsing out the spans
tokens.AddRange(ParseSpans(ref text, offset));
return tokens;
}
/// <summary>
/// Determine if the given paragraph of text contains any multi-line tokens.
/// </summary>
public static bool ParagraphContainsMultilineTokens(string text)
{
// For now, just look for H1/H2 defined by ---- or ====.
if (Markdown.HeaderSetextRegex.IsMatch(text))
return true;
return false;
}
/// <summary>
/// Parse a text snapshot into markdown sections. This is only part of the markdown parser that is really aware of the editor,
/// but it keeps us from re-creating all the "GetLineFromLineNumber"-type methods.
/// </summary>
/// <param name="snapshot"></param>
/// <returns></returns>
public static IEnumerable<Token> ParseMarkdownSections(ITextSnapshot snapshot)
{
string text = snapshot.GetText();
List<Tuple<int, TokenType>> startPoints =
new List<Tuple<int, TokenType>>(ParseMarkdownParagraph(text).Where(t => IsHeaderToken(t))
.Select(t => Tuple.Create(t.Span.Start, t.TokenType)));
List<Token> sections = new List<Token>();
Stack<Tuple<int, TokenType>> regions = new Stack<Tuple<int, TokenType>>();
foreach (var start in startPoints)
{
int previousLineNumber = Math.Max(0, snapshot.GetLineNumberFromPosition(start.Item1) - 1);
int end = snapshot.GetLineFromLineNumber(previousLineNumber).End;
while (regions.Count > 0 && regions.Peek().Item2 >= start.Item2)
{
var region = regions.Pop();
var span = Span.FromBounds(region.Item1, end);
sections.Add(new Token(region.Item2, span));
}
regions.Push(start);
}
while (regions.Count > 0)
{
var region = regions.Pop();
var span = Span.FromBounds(region.Item1, snapshot.Length);
sections.Add(new Token(region.Item2, span));
}
sections.Sort((left, right) =>
{
if (left.Span.Start != right.Span.Start)
return left.Span.Start.CompareTo(right.Span.Start);
return right.Span.Length.CompareTo(left.Span.Length);
});
return sections;
}
/// <summary>
/// Markdown token types.
/// </summary>
public enum TokenType
{
// Bold/italics
Italics,
Bold,
// Headers
H1, H2, H3, H4, H5, H6,
// Lists
UnorderedListElement,
OrderedListElement,
// Code/pre
PreBlock,
CodeBlock,
// Quotes
Blockquote,
// Links
LinkExpression,
LinkText,
LinkTitle,
LinkLabel,
// Link URLs
InlineUrl,
UrlDefinition,
AutomaticUrl,
// Images
ImageExpression,
ImageAltText,
ImageTitle,
ImageLabel,
// Miscellaneous
HorizontalRule,
}
/// <summary>
/// A Markdown token, which is a Span in the given text and an associated token type.
/// </summary>
public struct Token
{
public Token(TokenType type, Span span) { TokenType = type; Span = span; }
public TokenType TokenType;
public Span Span;
}
#endregion
#region Parser methods (private)
static IEnumerable<Token> ParseSpans(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
tokens.AddRange(ParseCodeSpans(ref text, offset));
// Make sure we don't parse backslash-escaped pieces of the text
text = DestroyBackslashEscapes(text);
tokens.AddRange(ParseImages(ref text, offset));
tokens.AddRange(ParseAnchors(ref text, offset));
tokens.AddRange(ParseItalicsAndBold(ref text, offset));
return tokens;
}
static IEnumerable<Token> ParseCodeBlocks(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = ParserCodeBlockRegex.Replace(text, match =>
{
tokens.Add(new Token(TokenType.CodeBlock, SpanFromGroup(match.Groups[1])));
return DestroyMarkdownCharsInBlock(match.Value);
});
return tokens;
}
static IEnumerable<Token> ParseCodeSpans(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.CodeSpanRegex.Replace(text, match =>
{
tokens.Add(new Token(TokenType.CodeBlock, SpanFromGroup(match.Groups[2], offset)));
return DestroyMarkdownCharsInBlock(match.Value);
});
return tokens;
}
static IEnumerable<Token> ParseHorizontalRules(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.HorizontalRulesRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.HorizontalRule, SpanFromGroup(match.Groups[0])));
});
return tokens;
}
static IEnumerable<Token> ParseBlockQuotes(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.BlockquoteRegex.ReplaceWithDummy(text, match =>
{
string bq = match.Groups[1].Value;
int bqOffset = match.Groups[1].Index;
tokens.Add(new Token(TokenType.Blockquote, SpanFromGroup(match.Groups[1])));
// This is kinda rough - we're going to trim each line and re-parse them as paragraphs
foreach (var line in Markdown._entireLines.Matches(bq).Cast<Match>())
{
string entireLine = line.Value;
Match strip = Regex.Match(entireLine, @"^[ \t]*>[ \t]?(.*)$", RegexOptions.Singleline);
if (strip.Success)
{
string toParse = strip.Groups[1].Value;
int toParseOffset = line.Index + strip.Groups[1].Index + bqOffset + offset;
tokens.AddRange(ParseMarkdownParagraph(toParse, toParseOffset));
}
}
});
return tokens;
}
static IEnumerable<Token> ParseHeaders(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.HeaderSetextRegex.ReplaceWithDummy(text, match =>
{
TokenType type = match.Groups[2].Value.StartsWith("=") ? TokenType.H1 : TokenType.H2;
tokens.Add(new Token(type, SpanFromGroup(match.Groups[0], offset)));
string headerText = match.Groups[1].Value;
tokens.AddRange(ParseSpans(ref headerText, match.Groups[1].Index + offset));
});
text = Markdown.HeaderAtxRegex.ReplaceWithDummy(text, match =>
{
TokenType type;
switch (match.Groups[1].Value.Length)
{
case 1: type = TokenType.H1; break;
case 2: type = TokenType.H2; break;
case 3: type = TokenType.H3; break;
case 4: type = TokenType.H4; break;
case 5: type = TokenType.H5; break;
case 6: type = TokenType.H6; break;
default:
throw new ApplicationException("The HeaderAtxRegex Regex produced an impossible match.");
}
tokens.Add(new Token(type, SpanFromGroup(match.Groups[0], offset)));
string headerText = match.Groups[2].Value;
tokens.AddRange(ParseSpans(ref headerText, match.Groups[2].Index + offset));
});
return tokens;
}
static IEnumerable<Token> ParseLists(ref string text, int offset = 0, int listLevel = 0)
{
List<Token> tokens = new List<Token>();
Regex regex = (listLevel == 0) ? ParserListTopLevelRegex : Markdown.ListNestedRegex;
text = regex.Replace(text, match =>
{
TokenType type = Regex.IsMatch(match.Groups[3].Value, Markdown.MarkerUL) ?
TokenType.UnorderedListElement : TokenType.OrderedListElement;
string list = match.Groups[1].Value;
int oldTokenCount = tokens.Count;
tokens.AddRange(ParseListItems(ref list, listLevel, type, match.Groups[1].Index + offset));
// If we didn't add anything, *don't do a replace*. Leave this row for other things to parse.
if (oldTokenCount == tokens.Count)
return match.Value;
else
return new string(_dummyChar, match.Length);
});
return tokens;
}
static IEnumerable<Token> ParseListItems(ref string list, int listLevel, TokenType listType, int offset = 0)
{
Regex regex = (listType == TokenType.OrderedListElement) ? OlListItemRegex : UlListItemRegex;
List<Token> tokens = new List<Token>();
list = regex.ReplaceWithDummy(list, match =>
{
// Add a token for the list bullet (like * or 1.)
tokens.Add(new Token(listType, SpanFromGroup(match.Groups[3], offset)));
string item = match.Groups[4].Value;
string leadingLine = match.Groups[1].Value;
int matchOffset = match.Groups[4].Index + offset;
if (!String.IsNullOrEmpty(leadingLine) || Regex.IsMatch(item, @"\n{2,}"))
{
// This is kinda rough - we're going to trim each line and re-parse them as paragraphs.
// This should work for everything but the two-line header format, which we can't have here anyways (I don't think)
foreach (var line in Markdown._entireLines.Matches(item).Cast<Match>())
{
Match strip = Regex.Match(line.Value, @"^(\t|[ ]{1," + Markdown.TabWidth + @"})?(.*)$", RegexOptions.Singleline);
if (strip.Success)
{
string toParse = strip.Groups[2].Value;
int toParseOffset = matchOffset + strip.Groups[1].Index;
tokens.AddRange(ParseMarkdownParagraph(toParse, toParseOffset));
}
}
}
else
{
// recursion for sub-lists
tokens.AddRange(ParseLists(ref item, matchOffset, listLevel + 1));
// Just in case, parse spans on the segment as well. If ParseLists found sublists, it would
// have blanked them out, so this won't do anything in that case. If there weren't sublists,
// though, this will take care of subexpressions.
tokens.AddRange(ParseSpans(ref item, matchOffset));
}
});
return tokens;
}
static IEnumerable<Token> ParseImages(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.ImagesRefRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.ImageExpression, SpanFromGroup(match.Groups[1], offset)));
tokens.Add(new Token(TokenType.ImageAltText, SpanFromGroup(match.Groups[2], offset)));
tokens.Add(new Token(TokenType.ImageLabel, SpanFromGroup(match.Groups[3], offset)));
});
text = Markdown.ImagesInlineRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.ImageExpression, SpanFromGroup(match.Groups[1], offset)));
tokens.Add(new Token(TokenType.ImageAltText, SpanFromGroup(match.Groups[2], offset)));
tokens.Add(new Token(TokenType.InlineUrl, SpanFromGroup(match.Groups[3], offset)));
tokens.Add(new Token(TokenType.ImageTitle, SpanFromGroup(match.Groups[6], offset)));
});
return tokens;
}
static IEnumerable<Token> ParseAnchors(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
// First, handle reference-style links: [link text] [id]
text = Markdown.AnchorRefRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.LinkExpression, SpanFromGroup(match.Groups[0], offset)));
tokens.Add(new Token(TokenType.LinkText, SpanFromGroup(match.Groups[2], offset)));
tokens.Add(new Token(TokenType.LinkLabel, SpanFromGroup(match.Groups[3], offset)));
});
// Next, inline-style links: [link text](url "optional title") or [link text](url "optional title")
text = Markdown.AnchorInlineRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.LinkExpression, SpanFromGroup(match.Groups[0], offset)));
tokens.Add(new Token(TokenType.LinkText, SpanFromGroup(match.Groups[2], offset)));
tokens.Add(new Token(TokenType.InlineUrl, SpanFromGroup(match.Groups[3], offset)));
tokens.Add(new Token(TokenType.LinkTitle, SpanFromGroup(match.Groups[6], offset)));
});
// Last, handle reference-style shortcuts: [link text]
text = Markdown.AnchorRefShortcutRegex.ReplaceWithDummy(text, match =>
{
tokens.Add(new Token(TokenType.LinkExpression, SpanFromGroup(match.Groups[0], offset)));
tokens.Add(new Token(TokenType.LinkText, SpanFromGroup(match.Groups[2], offset)));
tokens.Add(new Token(TokenType.LinkLabel, SpanFromGroup(match.Groups[2], offset)));
});
return tokens;
}
static IEnumerable<Token> ParseItalicsAndBold(ref string text, int offset = 0)
{
List<Token> tokens = new List<Token>();
text = Markdown.BoldRegex.Replace(text, match =>
{
tokens.Add(new Token(TokenType.Bold, SpanFromGroup(match.Groups[2], offset)));
return new string(_dummyChar, 2) + match.Groups[2].Value + new string(_dummyChar, 2);
});
text = Markdown.ItalicRegex.Replace(text, match =>
{
tokens.Add(new Token(TokenType.Italics, SpanFromGroup(match.Groups[2], offset)));
return new string(_dummyChar, 3) + match.Groups[2].Value + new string(_dummyChar, 3);
});
return tokens;
}
#endregion
#region Helpers
static bool IsHeaderToken(MarkdownParser.Token token)
{
return token.TokenType >= MarkdownParser.TokenType.H1 && token.TokenType <= MarkdownParser.TokenType.H6;
}
static string DestroyHtmlTags(string text)
{
int pos = 0;
int tagStart = 0;
StringBuilder newText = new StringBuilder();
foreach (Match m in Markdown.HtmlTokensRegex.Matches(text))
{
tagStart = m.Index;
if (pos < tagStart)
newText.Append(text.Substring(pos, tagStart - pos));
newText.Append(new string(_dummyChar, m.Length));
pos = tagStart + m.Length;
}
if (pos < text.Length)
newText.Append(text.Substring(pos, text.Length - pos));
return newText.ToString();
}
static Regex MagicMarkdownCharRegex = new Regex(@"[\*_{}[\]]", RegexOptions.Compiled | RegexOptions.ExplicitCapture | RegexOptions.Compiled);
static string DestroyMarkdownCharsInBlock(string block)
{
// Destroy characters that are magic in markdown
return MagicMarkdownCharRegex.Replace(block, new string(_dummyChar, 1));
}
static string DestroyBackslashEscapes(string text)
{
if (!text.Contains('\\'))
return text;
// All the backslash strings are two characters long
string replacement = new string(_dummyChar, 2);
foreach (var pair in Markdown.BackslashEscapeTable)
text = text.Replace(pair.Key, replacement);
return text;
}
static Span SpanFromGroup(Group group, int offset = 0)
{
return new Span(group.Index + offset, group.Length);
}
#endregion
}
}