You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
value=value.replace(/\{PATH(?::(folder|\.[a-zA-Z0-9.]+?))?\}/g,(_,y)=>`<span class="path" title="A relative or absolute path to a ${path_or_folder(y)}.">${path_folder(y)}</span>`)
29
+
.replace(/\{PATH_ABSOLUTE(?::(folder|\.[a-zA-Z0-9.]+?))?\}/g,(_,y)=>`<span class="path" title="An absolute path to a ${path_or_folder(y)}.">C:\\Windows\\Temp\\${path_folder(y)}</span>`)
30
+
.replace(/\{PATH_SMB(?::(folder|\.[a-zA-Z0-9.]+?))?\}/g,(_,y)=>`<span class="path" title="An SMB path to a ${path_or_folder(y)}.">\\\\servername\\C$\\Windows\\Temp\\${path_folder(y)}</span>`)
31
+
32
+
.replace(/\{REMOTEURL(?::(folder|\.[a-zA-Z0-9.]+?))?\}/g,(_,y)=>`<span class="path" title="A URL for ${path_or_folder(y)}.">https://www.example.org/${path_folder(y)}</span>`)
0 commit comments