import { UIRenderHtmlCardProps } from '../../toolkit/toolkit-types';
const html = `
This is text!
This is bold, italics.
`;
const whiteSpaceNormalConfig: UIRenderHtmlCardProps = {
title: 'Whitespace Collapsing in Action',
caption:
'Notice that the four line breaks and the second space after the coma have been removed.',
props: {
source: {
html
}
},
preferHtmlSrc: true
};
export default whiteSpaceNormalConfig;