We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Home > @microsoft/sp-webpart-base > ISerializedServerProcessedData > htmlStrings
A key-value map where keys are string identifiers and values are rich text with HTML format.
Signature:
htmlStrings?: { [key: string]: string; };
SharePoint servers treat the values as HTML content and run services like safety checks, search index and link fixup on them.
Example:
{ 'myRichDescription': '<div>Some standard <b>HTML content</b><a href='http://somelink'>A Link</a></div>' 'anotherRichText': <div class='aClass'><span style='color:red'>Some red text</div> }
Home