.=< { Star Gans Tq } >=.

  • Home

  • Killme
  • Download
  • Current Path : /home/m/e/h/meharicl/www/phpBB3/vendor/s9e/text-formatter/src/Plugins/Litedown/Parser/
    Upload File
    @Command ~ $  
    Current File : /home/m/e/h/meharicl/www/phpBB3/vendor/s9e/text-formatter/src/Plugins/Litedown/Parser/Slugger.js

    /**
    * @param {!Tag}   tag
    * @param {string} innerText
    */
    function filterTag(tag, innerText)
    {
    	var slug = innerText.toLowerCase();
    	slug = slug.replace(/[^a-z0-9]+/g, '-');
    	slug = slug.replace(/^-/, '').replace(/-$/, '');
    	if (slug !== '')
    	{
    		tag.setAttribute('slug', slug);
    	}
    }