Markdown.Generator.Core.Elements - smarthead/markdown-generator GitHub Wiki

Code

Represents markdown code-block e.g ```csharp\nRandom string\n```\n

public class Markdown.Generator.Core.Elements.Code
    : ElementBase

Methods

Type Name Summary
String Create()

CodeQuote

Represents markdown single-line code-block e.g `code`

public class Markdown.Generator.Core.Elements.CodeQuote
    : ElementBase

Methods

Type Name Summary
String Create()

ElementBase

public abstract class Markdown.Generator.Core.Elements.ElementBase

Fields

Type Name Summary
StringBuilder Builder

Methods

Type Name Summary
String Create()

Header

Represents markdown header e.g ## header\n

public class Markdown.Generator.Core.Elements.Header
    : ElementBase

Methods

Type Name Summary
String Create()

Image

Represents markdown image e.g ![title](url)

public class Markdown.Generator.Core.Elements.Image
    : ElementBase

Methods

Type Name Summary
String Create()

Link

Represents markdown link e.g [title](url)

public class Markdown.Generator.Core.Elements.Link
    : ElementBase

Methods

Type Name Summary
String Create()

List

Represents markdown list item e.g - list\n

public class Markdown.Generator.Core.Elements.List
    : ElementBase

Methods

Type Name Summary
String Create()

NewLine

public class Markdown.Generator.Core.Elements.NewLine
    : ElementBase

Methods

Type Name Summary
String Create()

Table

public class Markdown.Generator.Core.Elements.Table
    : ElementBase

Methods

Type Name Summary
String Create()

Text

public class Markdown.Generator.Core.Elements.Text
    : ElementBase

Methods

Type Name Summary
String Create()