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:
579 bytes
|
Line | |
---|
1 | 'use strict';
|
---|
2 |
|
---|
3 | const { detachNodeFromParent } = require('../lib/xast.js');
|
---|
4 |
|
---|
5 | exports.name = 'removeTitle';
|
---|
6 | exports.type = 'visitor';
|
---|
7 | exports.active = true;
|
---|
8 | exports.description = 'removes <title>';
|
---|
9 |
|
---|
10 | /**
|
---|
11 | * Remove <title>.
|
---|
12 | *
|
---|
13 | * https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title
|
---|
14 | *
|
---|
15 | * @author Igor Kalashnikov
|
---|
16 | *
|
---|
17 | * @type {import('../lib/types').Plugin<void>}
|
---|
18 | */
|
---|
19 | exports.fn = () => {
|
---|
20 | return {
|
---|
21 | element: {
|
---|
22 | enter: (node, parentNode) => {
|
---|
23 | if (node.name === 'title') {
|
---|
24 | detachNodeFromParent(node, parentNode);
|
---|
25 | }
|
---|
26 | },
|
---|
27 | },
|
---|
28 | };
|
---|
29 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.