Radish alpha
r
rad:z371PVmDHdjJucejRoRYJcDEvD5pp
Radicle website including documentation and guides
Radicle
Git
radicle.xyz _plugins fedi.rb
module Jekyll
  module Fedi
    # Takes a handle of the form "@someone@toot.example.com"
    # and transforms it to a profile URL of the form
    # "https://toot.example.com/@someone".
    def fedi_to_https(input)
      input
        .sub('@', '')
        .split('@')
        .reverse
        .join('/@')
        .prepend('https://')
    end
  end
end

Liquid::Template.register_filter(Jekyll::Fedi)