C# Class MarkdownDeep.TableSpec

Show file Open project: FransBouma/DocNet Class Usage Examples

Public Properties

Property Type Description
Columns List
Headers List
LeadingBar bool
Rows List>
TrailingBar bool

Public Methods

Method Description
Parse ( StringScanner p ) : TableSpec
ParseRow ( StringScanner p ) : List
Render ( Markdown m, StringBuilder b ) : void
TableSpec ( ) : System

Private Methods

Method Description
RenderRow ( Markdown m, StringBuilder b, List row, string type ) : void

Method Details

Parse() public static method

public static Parse ( StringScanner p ) : TableSpec
p StringScanner
return TableSpec

ParseRow() public method

public ParseRow ( StringScanner p ) : List
p StringScanner
return List

Render() public method

public Render ( Markdown m, StringBuilder b ) : void
m Markdown
b StringBuilder
return void

TableSpec() public method

public TableSpec ( ) : System
return System

Property Details

Columns public property

public List Columns
return List

Headers public property

public List Headers
return List

LeadingBar public property

public bool LeadingBar
return bool

Rows public property

public List> Rows
return List>

TrailingBar public property

public bool TrailingBar
return bool