This repository was archived by the owner on Sep 9, 2024. It is now read-only.
This repository was archived by the owner on Sep 9, 2024. It is now read-only.
Shortcodes aliasing native .md syntax are only matched in preview #1098
Open
Description
Not sure if this is a bug or just a massive misuse of the feature on my part, but if I define a shortcode like so:
CMS.registerShortcode('shortcodename', {
label: 'My shortcode',
openTag: '<', // <--- !
closeTag: '>',
separator: ' ',
toProps: () => ({}),
toArgs: () => ['/'],
control: () => {
return h('div', {className: 'red-rectangle'}, [])
},
preview: () => {
return h('div', {className: 'red-rectangle'}, [])
}
// ...
});
And use it on a document like so:
<shortcodename />
Then the shortcode will match in the preview, as evidenced by the preview component being visible in the result, but will remain visible as raw HTML in the widget.
As far as I can tell, the dissonance comes from the fact that the control first parses the value as markdown before applying shortcodes:
While the preview first replaces shortcodes (into MDX) and then parses markdown:
static-cms/packages/core/src/widgets/markdown/MarkdownPreview.tsx
Lines 58 to 72 in 734cecd
(Though I suppose for my particular issue, a call to processShortcodeConfigsToSlate
around here would suffice:)