Frederik Sauer
Frederik Sauer
I was thinking sort of the same thing, but instead of having `link_noreferrer`, `link_nooperner` and `target_blank` a toggle with `true/false`, change it to be a radio of `true/false/external` so internal...
I think there should be a setting for `default to current date if required` instead
Are we waiting for the import PRs to be ready before merging this?
We're also experiencing this broken behaviour with Safari =/
We ended up doing it ourselves using the `jacksleight/statamic-bard-mutator` package: ```php Mutator::html('link', function ($value) { $href = $value[1]['href'] ?? null; if (URL::isExternal($href) && !Str::startsWith($href, ['mailto:', 'tel:'])) { $value[1]['rel'] = 'external...
@malssid I'm experiencing the same issues all of a sudden - I've tried adding `sleep 1` before `cat`, but I think it's some weird buffering going on in Zed.
@latorante I changed my logic to use serbanrobu's snippet (slightly modified) from a Pint issue - https://github.com/laravel/pint/issues/162#issuecomment-1645114713 `.zed/settings.json`: ```json // Folder-specific settings // // For a full list of overridable...
I have another use with this, as I have to open `.zed/settings.json` after updating Zed before the overrides take effect.
Looks pretty clean to me 👍
I'm experiencing the same error Edit: I'm using https://github.com/outl1ne/nova-color-field until this issue is resolved