Module:Fedi-share

Lua

CodeDiscussionEditHistoryLinksLink count Subpages:DocumentationTestsResultsSandboxLive code All modules


Usage

edit
{{#invoke:fedi-share|link|This is a
multi-line post
With a #hashtag}}

gives a link as:

https://fedi-share.toolforge.org/?json=%22This+is+a+%5Cnmulti-line+post%5CnWith+a+%23hashtag%22


Code

-- 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