Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/bbcode/parser/src/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/ui/install/js/ui/bbcode/parser/src/parser-scheme.js

import { BBCodeScheme, BBCodeTagScheme, BBCodeNode } from 'ui.bbcode.model';

export class ParserScheme extends BBCodeScheme
{
	getTagScheme(tagName: string): BBCodeTagScheme
	{
		return new BBCodeTagScheme({
			name: 'any',
		});
	}

	isAllowedTag(tagName: string): boolean
	{
		return true;
	}

	isChildAllowed(parent: string | BBCodeNode, child: string | BBCodeNode): boolean
	{
		return true;
	}
}