diff --git a/src/technologies/d.json b/src/technologies/d.json index 11ce3d7fc..825cb958c 100644 --- a/src/technologies/d.json +++ b/src/technologies/d.json @@ -1190,11 +1190,37 @@ 88 ], "description": "Drupal Multisite enables separate, independent sites to be served from a single codebase.", - "html": [ - "script[src*='sites\\/(?!default|all).*\\/files']", - "img[src*='sites\\/(?!default|all).*\\/files']", - "img[data-src*='sites\\/(?!default|all).*\\/files']", - "link[href*='sites\\/(?!default|all).*\\/files']" + "dom": { + "img[src*='sites/default/']": { + "attributes": { + "src": "sites\\/default\\/.*\\/files'" + } + }, + "img[src*='sites/all/']": { + "attributes": { + "src": "sites\\/all\\/.*\\/files'" + } + }, + "img[data-src*='sites/default/']": { + "attributes": { + "data-src": "sites\\/default\\/.*\\/files'" + } + }, + "img[data-src*='sites/all/']": { + "attributes": { + "data-src": "sites\\/all\\/.*\\/files'" + } + }, + "link[href*='sites/default/']": { + "attributes": { + "href": "sites\\/default\\/.*\\/files'" + } + }, + "link[href*='sites/all/']": { + "attributes": { + "href": "sites\\/all\\/.*\\/files'" + } + } ], "icon": "Drupal.svg", "implies": "Drupal", @@ -1345,4 +1371,4 @@ "scriptSrc": "deepMiner\\.js", "website": "https://github.com/deepwn/deepMiner" } -} \ No newline at end of file +}