No description available.
Properties
facets
array
of union
Required
A list of facet types that this lens can translate bidirectionally between. For example, if you include `pub.leaflet.richtext.facet#bold` and `at.markpub.facet#strong` then this lens can be used to translate between those two facet types and any renderer that understands either of those facet types can use this lens to render the facets it understands.
outputCode
string
Optional
You may include code here intended to process a string with the provided facets. This is optional and not expected to be used by most lenses, but it can be helpful for testing or for providing examples of how a renderer might use the lens.
outputDescription
string
Optional
A human-readable description of what the output of this lens is intended to be. This is optional but can be helpful for documentation purposes and for anyone trying to understand how to use the lens.
outputTargetHTML
string
Optional
No description available.
View raw schema
{
"type": "object",
"required": [
"facets"
],
"properties": {
"facets": {
"type": "array",
"items": {
"refs": [],
"type": "union",
"closed": false
},
"description": "A list of facet types that this lens can translate bidirectionally between. For example, if you include `pub.leaflet.richtext.facet#bold` and `at.markpub.facet#strong` then this lens can be used to translate between those two facet types and any renderer that understands either of those facet types can use this lens to render the facets it understands."
},
"outputCode": {
"type": "string",
"description": "You may include code here intended to process a string with the provided facets. This is optional and not expected to be used by most lenses, but it can be helpful for testing or for providing examples of how a renderer might use the lens."
},
"outputTargetHTML": {
"type": "string",
"description": ""
},
"outputDescription": {
"type": "string",
"description": "A human-readable description of what the output of this lens is intended to be. This is optional but can be helpful for documentation purposes and for anyone trying to understand how to use the lens."
}
}
}