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
Copy file name to clipboardExpand all lines: README.md
+38Lines changed: 38 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,6 +90,7 @@ type sources =
90
90
value:string,
91
91
resourcePath:string
92
92
) =>boolean;
93
+
scriptingEnabled?:boolean;
93
94
};
94
95
```
95
96
@@ -447,6 +448,43 @@ module.exports = {
447
448
};
448
449
```
449
450
451
+
#### `scriptingEnabled`
452
+
453
+
Type:
454
+
455
+
```ts
456
+
typescriptingEnabled=boolean;
457
+
```
458
+
459
+
Default: `true`
460
+
461
+
By default, the parser in `html-loader` interprets content inside `<noscript>` tags as `#text`, so processing of content inside this tag will be ignored.
462
+
463
+
In order to enable processing inside `<noscript>` for content recognition by the parser as `#AST`, set this parameter to: `false`
0 commit comments