Jump to content

Module:Fedi-share

Permanently protected module
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by commons>Legoktm at 04:20, 26 March 2023 (oops). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

-- Helper  for https://fedi-share.toolforge.org/

local p = {}

function p.link( frame )
	local message = frame.args[1];
	return "https://fedi-share.toolforge.org/?json=" .. mw.uri.encode( mw.text.jsonEncode( message ) )
end

return p