Welcome to mirror list, hosted at ThFree Co, Russian Federation.

render_attribute_definition.js « renderers « services « rich_content_editor « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 };