UNPKG

soames-gatsby-theme

Version:

A customizable Gatsby theme for personal websites using WordPress as a headless CMS.

6 lines (4 loc) 163 B
// src/utils/shortcodes/getContent.ts export function getContent(match: RegExpMatchArray | null): string | null { return match && match[2] ? match[2] : null; }