3df41d2308
* fix(vscode): Markdown frontmatter should use TSX, not YAML * test: add test for #153 * chore: bump deps * chore: update to use @astrojs scope * fix: Markdown parse error when only child is `{expression}` * fix: update renderer edge cases * fix: failing test * fix: update renderer
21 lines
575 B
JavaScript
21 lines
575 B
JavaScript
import { h } from 'preact';
|
|
import { renderToString } from 'preact-render-to-string';
|
|
import StaticHtml from './static-html.js';
|
|
|
|
function check(Component, props, children) {
|
|
try {
|
|
const { html } = renderToStaticMarkup(Component, props, children)
|
|
return Boolean(html)
|
|
} catch (e) {}
|
|
return false;
|
|
}
|
|
|
|
function renderToStaticMarkup(Component, props, children) {
|
|
const html = renderToString(h(Component, { ...props, children: h(StaticHtml, { value: children }), innerHTML: children }));
|
|
return { html };
|
|
}
|
|
|
|
export default {
|
|
check,
|
|
renderToStaticMarkup,
|
|
};
|