From 25b39539374846d482e669594ca4d9b98b5b73ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heiko=20Thei=C3=9Fen?= Date: Fri, 14 Jun 2024 13:31:59 +0200 Subject: [PATCH] SAP vocabulary file names (#258) --- lib/md2html.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/md2html.js b/lib/md2html.js index 9fe14b4b..e1f67146 100644 --- a/lib/md2html.js +++ b/lib/md2html.js @@ -8,7 +8,7 @@ filter.stdio(function ({ t, c }, format, meta) { c[2][0] = "https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/" + c[2][0]; - else if (/^com\.sap\..*?\.xml#L/.test(c[2][0])) + else if (/\.xml#L/.test(c[2][0])) c[2][0] = "https://github.com/SAP/odata-vocabularies/blob/main/vocabularies/" + c[2][0];