@wordpress/block-library
Version:
Block library for the WordPress editor.
30 lines (27 loc) • 707 B
JavaScript
/**
* WordPress dependencies
*/
import { RichText, useBlockProps } from '@wordpress/block-editor';
/**
* Internal dependencies
*/
import { escape } from './utils';
export default function save( { attributes } ) {
return (
<pre { ...useBlockProps.save() }>
<RichText.Content
tagName="code"
// To do: `escape` encodes characters in shortcodes and URLs to
// prevent embedding in PHP. Ideally checks for the code block,
// or pre/code tags, should be made on the PHP side?
value={ escape(
typeof attributes.content === 'string'
? attributes.content
: attributes.content.toHTMLString( {
preserveWhiteSpace: true,
} )
) }
/>
</pre>
);
}