Last change
on this file since 1ad8e64 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
604 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | const { detachNodeFromParent } = require('../lib/xast.js');
|
---|
4 |
|
---|
5 | exports.name = 'removeStyleElement';
|
---|
6 | exports.type = 'visitor';
|
---|
7 | exports.active = false;
|
---|
8 | exports.description = 'removes <style> element (disabled by default)';
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * Remove <style>.
|
---|
12 | *
|
---|
13 | * https://www.w3.org/TR/SVG11/styling.html#StyleElement
|
---|
14 | *
|
---|
15 | * @author Betsy Dupuis
|
---|
16 | *
|
---|
17 | * @type {import('../lib/types').Plugin<void>}
|
---|
18 | */
|
---|
19 | exports.fn = () => {
|
---|
20 | return {
|
---|
21 | element: {
|
---|
22 | enter: (node, parentNode) => {
|
---|
23 | if (node.name === 'style') {
|
---|
24 | detachNodeFromParent(node, parentNode);
|
---|
25 | }
|
---|
26 | },
|
---|
27 | },
|
---|
28 | };
|
---|
29 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.