Write a procedure called ticketLink
that takes one parameter, called ticketId
, and creates a link whose text is Ticket #{ID}
, where {ID}
represents the ID of the ticket, and which links to the ticket. Assume that the URL of a ticket in the company's ticket-tracking system is https://tix.example.com/ticket/{ID}
.
Test this procedure by putting it at the top of the OnboardingProcess
tiddler and calling it at the bottom of the tiddler with the ticket number 245188
.
Go to answer: Ex:TicketTrackingLink/answer