Sha256: 83dbdfa7cba8d3e9c1cb59e52414cdf71be4a88de131bf3324e6d994f22b6c4d

Contents?: true

Size: 1.51 KB

Versions: 34

Compression:

Stored size: 1.51 KB

Contents

'use strict';

exports.type = 'perItem';

exports.active = true;

exports.description = 'removes editors namespaces, elements and attributes';

var editorNamespaces = require('./_collections').editorNamespaces,
    prefixes = [];

exports.params = {
    additionalNamespaces: []
};

/**
 * Remove editors namespaces, elements and attributes.
 *
 * @example
 * <svg xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd">
 * <sodipodi:namedview/>
 * <path sodipodi:nodetypes="cccc"/>
 *
 * @param {Object} item current iteration item
 * @param {Object} params plugin params
 * @return {Boolean} if false, item will be filtered out
 *
 * @author Kir Belevich
 */
exports.fn = function(item, params) {

    if (Array.isArray(params.additionalNamespaces)) {
        editorNamespaces = editorNamespaces.concat(params.additionalNamespaces);
    }

    if (item.elem) {

        if (item.isElem('svg')) {

            item.eachAttr(function(attr) {
                if (attr.prefix === 'xmlns' && editorNamespaces.indexOf(attr.value) > -1) {
                    prefixes.push(attr.local);

                    // <svg xmlns:sodipodi="">
                    item.removeAttr(attr.name);
                }
            });

        }

        // <* sodipodi:*="">
        item.eachAttr(function(attr) {
            if (prefixes.indexOf(attr.prefix) > -1) {
                item.removeAttr(attr.name);
            }
        });

        // <sodipodi:*>
        if (prefixes.indexOf(item.prefix) > -1) {
            return false;
        }

    }

};

Version data entries

34 entries across 31 versions & 11 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.18.0 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.18.2 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.16.1 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.15.2 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.18.4 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.18.1 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.14.0 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
tang-0.2.1 spec/tang_app/node_modules/svgo/plugins/removeEditorsNSData.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/svgo/plugins/removeEditorsNSData.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/svgo/plugins/removeEditorsNSData.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/svgo/plugins/removeEditorsNSData.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/svgo/plugins/removeEditorsNSData.js
tang-0.2.0 spec/tang_app/node_modules/svgo/plugins/removeEditorsNSData.js
tang-0.1.0 spec/tang_app/node_modules/svgo/plugins/removeEditorsNSData.js
tang-0.0.9 spec/tang_app/node_modules/svgo/plugins/removeEditorsNSData.js
enju_library-0.3.8 spec/dummy/node_modules/svgo/plugins/removeEditorsNSData.js
jester-data-8.0.0 node_modules/svgo/plugins/removeEditorsNSData.js