RiceEmpress (talk | contribs) mNo edit summary |
RiceEmpress (talk | contribs) m (seeing if it works the other older way) |
||
Line 3: | Line 3: | ||
function p.main(frame) | function p.main(frame) | ||
local rss = mw.ext. | local rss = mw.ext.externaldata.getWebData { | ||
url = 'https://bsky.app/profile/did:plc:ve2p3lz33ivtyikqztvsgtx3/rss' | |||
, data = {pubDate = 'pubDate', description = 'description', link= 'link'} | |||
, format = 'xml' | |||
} | |||
mw.dumpObject(rss) | |||
end | end | ||
return p | return p |
Revision as of 17:19, 5 June 2025
Documentation for this module may be created at Module:Bluesky RSS Feed/doc
local capiunto = require 'capiunto' local p = {} function p.main(frame) local rss = mw.ext.externaldata.getWebData { url = 'https://bsky.app/profile/did:plc:ve2p3lz33ivtyikqztvsgtx3/rss' , data = {pubDate = 'pubDate', description = 'description', link= 'link'} , format = 'xml' } mw.dumpObject(rss) end return p