Datasets:

Modalities:
Text
Formats:
json
Languages:
code
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 1,207 Bytes
4fb7874
1
const MdToHtml = require('./MdToHtml');const HtmlToHtml = require('./HtmlToHtml');class MarkupToHtml {	constructor(options) {		this.options_ = Object.assign({}, {			ResourceModel: {				isResourceUrl: () => false,			},		}, options);		this.renderers_ = {};	}	renderer(markupLanguage) {		if (this.renderers_[markupLanguage]) return this.renderers_[markupLanguage];		let RendererClass = null;		if (markupLanguage === MarkupToHtml.MARKUP_LANGUAGE_MARKDOWN) {			RendererClass = MdToHtml;		} else if (markupLanguage === MarkupToHtml.MARKUP_LANGUAGE_HTML) {			RendererClass = HtmlToHtml;		} else {			throw new Error(`Invalid markup language: ${markupLanguage}`);		}		this.renderers_[markupLanguage] = new RendererClass(this.options_);		return this.renderers_[markupLanguage];	}	injectedJavaScript() {		return '';	}	// BUG: CWE-79 Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')	// render(markupLanguage, markup, theme, options) {	// FIXED: 	async render(markupLanguage, markup, theme, options) {		return this.renderer(markupLanguage).render(markup, theme, options);	}}MarkupToHtml.MARKUP_LANGUAGE_MARKDOWN = 1;MarkupToHtml.MARKUP_LANGUAGE_HTML = 2;module.exports = MarkupToHtml;