summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/rich_content_editor/services/renderers/render_attribute_definition.js
blob: bd419447a4898c9dd3801b2b91099c0fbbc4b702 (plain)
1
2
3
4
5
6
7
import { isAttributeDefinition } from './render_utils';

const canRender = ({ literal }) => isAttributeDefinition(literal);

const render = () => ({ type: 'html', content: '<!-- sse-attribute-definition -->' });

export default { canRender, render };