diff --git a/src/synthesis/clean.ts b/src/synthesis/clean.ts index d1e571d3..b1bca457 100644 --- a/src/synthesis/clean.ts +++ b/src/synthesis/clean.ts @@ -8,7 +8,7 @@ const parser = SimpleMarkdown.parserFor( ...rulesExtended, command: { order: rulesExtended.strong.order, - match: (source: string) => /^<\/([\w-]+):(\d{17,20})>/.exec(source), + match: (source: string) => /^<\/([\w-]+(?: [\w-]+)?(?: [\w-]+)?):(\d{17,20})>/.exec(source), parse: (capture: Capture) => ({ name: capture[1], id: capture[2],