UNPKG

@atlaskit/editor-wikimarkup-transformer

Version:

Wiki markup transformer for JIRA and Confluence

10 lines 208 B
import { encode } from '..'; export const bodiedSyncBlock = (node, { context } = {}) => { const result = []; node.forEach(n => { result.push(encode(n, context)); }); return result.join('\n'); };