I tried to add attributes requested in #6. But it turned out that this is simply not possible:
- Gutenberg's link supports only 4 attributes
https://github.com/WordPress/gutenberg/blob/fd98542335ce1a2eb0517b9e4f28...attributes: { url: 'href', type: 'data-type', id: 'data-id', target: 'target', },
- There is no way to extend them
https://github.com/WordPress/gutenberg/issues/11599
Rewriting
LinkControl
andcore/link
is not an option. So I guess @bgilhome already did the maximum of what we can do. Shall we go with his solution?- Gutenberg's link supports only 4 attributes
One additional suggestion: Display entity type and bundle labels in the "type" label.
Currently it is:
node
,media
. etc.It can be:
Content: Page
,Media: PDF
, etc.It would be especially handy because Linkit can group suggestions by bundles.
- last update
over 1 year ago 2 pass - 🇨🇭Switzerland das-peter
Slightly overhauled the patch to use the linkit services instead the controller to fetch the suggestions.
And usingContainerInjectionInterface
to inject these services.
Output format etc. stays the same.