HTML2Markdown
Converts HTML to Markdown syntax.
|
CHtml2Markdown.Converter | An Html to Markdown converter |
▼CHtml2Markdown.Replacement.IReplacementGroup | Groups IReplacer instances into groups. This enables easier configuration of IScheme |
CHtml2Markdown.Replacement.CommonMark.CommonMarkLayoutReplacementGroup | A group of IReplacer to deal with converting HTML that is used for layout |
CHtml2Markdown.Replacement.EntitiesReplacementGroup | A group of IReplacer to deal with converting HTML entities |
CHtml2Markdown.Replacement.HeadingReplacementGroup | A group of IReplacer to deal with converting HTML headers |
CHtml2Markdown.Replacement.IllegalHtmlReplacementGroup | A group of IReplacer to deal with removing illegal HTML |
CHtml2Markdown.Replacement.LayoutReplacementGroup | A group of IReplacer to deal with converting HTML that is used for layout |
CHtml2Markdown.Replacement.TextFormattingReplacementGroup | A group of IReplacer to deal with converting HTML for formatting text |
▼CHtml2Markdown.Replacement.IReplacer | Searches an entire HTML string and replaces particular matches |
▼CHtml2Markdown.Replacement.CompositeReplacer | Allows for multiple replacements to be applied to the HTML |
CHtml2Markdown.Replacement.EmphasisTagReplacer | Replaces the HTML emphasis tag with its Markdown equivalent |
CHtml2Markdown.Replacement.StrongTagReplacer | Replace the strong tag with its Markdown equivalent |
▼CHtml2Markdown.Replacement.CustomReplacer | Allows custom replacement of HTML tags utilizing external functions |
CHtml2Markdown.Replacement.AnchorTagReplacer | Replaces an anchor tag with the link text and the link URL in Markdown format |
CHtml2Markdown.Replacement.BlockquoteTagReplacer | Replaces a blockquote tag with the appropriate Markdown format |
CHtml2Markdown.Replacement.CodeTagReplacer | Replaces the HTML code tag with its Markdown equivalent |
CHtml2Markdown.Replacement.HeadingTagReplacer | Replaces the HTML heading tag with its Markdown equivalent |
CHtml2Markdown.Replacement.HtmlEntitiesReplacer | Replaces HTML entities with their Markdown equivalent |
CHtml2Markdown.Replacement.HtmlListReplacer | Replaces HTML lists with their Markdown equivalent |
CHtml2Markdown.Replacement.ImageTagReplacer | Replaces HTML image tags with their Markdown equivalent |
CHtml2Markdown.Replacement.ParagraphTagReplacer | Replace the paragraph tag with its Markdown equivalent |
CHtml2Markdown.Replacement.PreTagReplacer | Replaces the pre tag with a Markdown equivalent |
▼CHtml2Markdown.Replacement.PatternReplacer | Allows replacement with a regular expression |
CHtml2Markdown.Replacement.BodyTagReplacer | Removes the body tag |
CHtml2Markdown.Replacement.BreakTagReplacer | Replaces the HTML break tag with its Markdown equivalent |
CHtml2Markdown.Replacement.DocTypeReplacer | Removes the doctype tag |
CHtml2Markdown.Replacement.HeadTagReplacer | Removes the doctype tag |
CHtml2Markdown.Replacement.HorizontalRuleTagReplacer | Replaces the HTML horizontal rule tag with its Markdown equivalent |
CHtml2Markdown.Replacement.HtmlCommentReplacer | Removes the HTML comment tag |
CHtml2Markdown.Replacement.HtmlTagReplacer | Removes the HTML tag |
CHtml2Markdown.Replacement.LinkTagReplacer | Removes the link tag |
CHtml2Markdown.Replacement.MetaTagReplacer | Removes the meta tag |
CHtml2Markdown.Replacement.ScriptTagReplacer | Removes the script tag |
CHtml2Markdown.Replacement.TitleTagReplacer | Removes the title tag |
▼CHtml2Markdown.Scheme.IScheme | Allows creation of custom conversion schemes to control conversion |
▼CHtml2Markdown.Scheme.AbstractScheme | A group of IReplacer to deal with converting HTML entities |
CHtml2Markdown.Scheme.CommonMark | Collection of IReplacer for converting CommonMark Markdown https://commonmark.org/ |
CHtml2Markdown.Scheme.Markdown | Collection of IReplacer for converting vanilla Markdown See : https://daringfireball.net/projects/markdown/syntax |