-- Utility functions for, which is a template similar to, but lets you link to issues and pull requests that aren't on Phabricator, e.g. GitHub, GitLab, etc.
local p =
-- function p.getDomain(frame) local url = frame.args[1] local domain = string.gsub(url, "www%.", "") domain = string.match(domain, 'https?:%/%/(.-)%/.*$') return domainend
-- function p.getIssueNumber(frame) local url = frame.args[1] local issueNumber = string.match(url, '/(%d+)') if tonumber(issueNumber)
return p