You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 23, 2021. It is now read-only.
A key-value map where keys are string identifiers and values are strings that should be search indexed.
Signature:
searchablePlainTexts?: {[key: string]: string;};
Remarks
The values are HTML-encoded before being sent to the server. The encoded values are visible to the search indexer, but are not treated as valid HTML. So, other services such as link fixup will not run on them.
Example:
{
'justSomeText': 'This is some plain text',
'anotherText': 'Can have <any> characters here: "<>&\''
}