diff --git a/kumascript/macros/TemplateLink.ejs b/kumascript/macros/TemplateLink.ejs deleted file mode 100644 index 6d20fde59450..000000000000 --- a/kumascript/macros/TemplateLink.ejs +++ /dev/null @@ -1,25 +0,0 @@ -<% -/** - * - * Inserts a link to the specified template's page. - * Useful when describing a template and wanting to link to its - * code for reference. - * - * Note that GitHub URLs are case-sensitve. - * e.g. If the file is named "page.ejs", {{TemplateLink("Page")}} leads to 404 - * but {{TemplateLink("page")}} works - * - * Parameters: - * - * $0 - Name of the template to link to. - */ - -// Throw a MacroDeprecatedError flaw -// Condition for removal: no more use in translated-content (May 2022: 915 occurrences) -// 0 occurrences left in en-US -mdn.deprecated(); - -let dest = "https://github.com/mdn/yari/tree/main/kumascript/macros/" + $0 + ".ejs"; -let text = $0; -%> -<%=text%>