isTrusted property
Object
get
isTrusted
Indicates that this markdown string is from a trusted source. Only trusted
markdown supports links that execute commands, e.g. [Run it](command:myCommandId)
.
Defaults to false
(commands are disabled).
Implementation
_i2.Object get isTrusted => _i5.getProperty(
this,
'isTrusted',
);
set
isTrusted
(Object value)
Implementation
set isTrusted(_i2.Object value) {
_i5.setProperty(
this,
'isTrusted',
value,
);
}