GFMDataProcessor (markdown-gfm)
@ckeditor/ckeditor5-markdown-gfm/src/gfmdataprocessor
This data processor implementation uses GitHub Flavored Markdown as input/output data.
See the Markdown output guide to learn more on how to enable it.
Filtering
Properties
-
private
_html2markdown : HtmlToMarkdown
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#_html2markdown
Helper for converting HTML to Markdown.
-
HTML data processor used to process HTML produced by the Markdown-to-HTML converter and the other way.
-
private
_markdown2html : MarkdownToHtml
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#_markdown2html
Helper for converting Markdown to HTML.
Methods
-
constructor( document )
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#constructor
-
keepHtml( element ) → void
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#keepHtml
Keeps the specified element in the output as HTML. This is useful if the editor contains features producing HTML that is not a part of the Markdown standard.
By default, all HTML tags are removed.
Parameters
element : keyof HTMLElementTagNameMap
The element name to be kept.
Returns
void
-
registerRawContentMatcher( pattern ) → void
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#registerRawContentMatcher
Registers a
MatcherPattern
for view elements whose content should be treated as raw data and not processed during the conversion from Markdown to view elements.The raw data can be later accessed by a custom property of a view element called
"$rawContent"
.Parameters
pattern : MatcherPattern
The pattern matching all view elements whose content should be treated as raw data.
Returns
void
-
toData( viewFragment ) → string
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#toData
Converts the provided
DocumentFragment
to data format – in this case to a Markdown string.Parameters
viewFragment : DocumentFragment
Returns
string
Markdown string.
-
toView( data ) → DocumentFragment
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#toView
Converts the provided Markdown string to a view tree.
Parameters
data : string
A Markdown string.
Returns
DocumentFragment
The converted view element.
-
useFillerType() → void
module:markdown-gfm/gfmdataprocessor~GFMDataProcessor#useFillerType
This method does not have any effect on the data processor result. It exists for compatibility with the
DataProcessor
interface.Returns
void
Every day, we work hard to keep our documentation complete. Have you spotted outdated information? Is something missing? Please report it via our issue tracker.
With the release of version 42.0.0, we have rewritten much of our documentation to reflect the new import paths and features. We appreciate your feedback to help us ensure its accuracy and completeness.