C# Class UniversalMarkdown.Parse.Elements.TableRow

Represents a single row in the table.
ファイルを表示 Open project: QuinnDamerell/UniversalMarkdown Class Usage Examples

Private Methods

Method Description
Parse ( string markdown, int startingPos, int maxEndingPos, int quoteDepth ) : int

Called when this block type should parse out the goods. Given the markdown, a starting point, and a max ending point the block should find the start of the block, find the end and parse out the middle. The end most of the time will not be the max ending pos, but it sometimes can be. The function will return where it ended parsing the block in the markdown.

ParseContents ( string markdown, int startingPos, int maxEndingPos, int quoteDepth, bool requireVerticalBar, int>.Action contentParser ) : int

Parses the contents of the row, ignoring whitespace at the beginning and end of each cell.