Attach hyperlink automatically for matched keywords (CKEditor5)

I’ve added the CKEditor5 plugin into my strapi project. What I would like to do now is that when I have word like Google in my content, it will be automatically attached to a hyperlink to https://www.google.com or https://medium.com whenever the word ‘Medium’ appears in the content. Is it possible to do so by adding/editing the ckeditor.txt in the ./config folder?

This topic has been created from a Discord post (1269899333055287307) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Found this ckeditor config in Github (kmvs-strapi/config/ckeditor.txt at bf412637150d3f75b97a2386d0e97985b0455e52 · Rithvik-Upadhya/kmvs-strapi · GitHub).

typing: {
          transformations: {
            extra: [
              {
                from: "KMVS",
                to: "Kutch Mahila Vikas Sangathan",
              },
              {
                from: /(\. )([a-z])$/,
                to: (matches) => [null, matches[1].toUpperCase()],
              },
            ],
          },
        },

This key looks like it will solve my problem but it is not working.