<my-component> Some text </my-component>
, а затем переключиться на визуальный редактор – то разметка превращается в <span> Some text </span>
. bitrix/php_interface/admin_header.php
<script>
BX.addCustomEvent('OnEditorInitedBefore', function(toolbar) {
var _this = this;
BX.addCustomEvent(this, 'OnGetParseRules', BX.proxy(function() {
this.rules.tags['my-component'] = {}; // с дефисом
this.rules.tags.mycomponent = {}; // без дефиса
}, this));
});
</script>