UNPKG

@atlaskit/editor-wikimarkup-transformer

Version:

Wiki markup transformer for JIRA and Confluence

12 lines 207 B
import { inlines } from './inlines'; export const caption = (node, { context } = {}) => { let result = ''; node.forEach(n => { result += inlines(n, { context }); }); return result; };