grunt-dom-munger
grunt-dom-munger copied to clipboard
Grunt task to read and manipulate HTML with CSS selectors.
Bumps [grunt](https://github.com/gruntjs/grunt) from 1.4.1 to 1.5.3. Release notes Sourced from grunt's releases. v1.5.3 Merge pull request #1745 from gruntjs/fix-copy-op 572d79b Patch up race condition in symlink copying. 58016ff Merge pull...
Hey! My recent project has grown to the point that now dom_munger updates/inserts a lot of parts (100s) into html. With this being said a lot of unnecessary logs are...
Can I configure the `options.read()` method to only get me the `script` tags I want to? If I got it right, I can only get _all_ `script` tags' `src` attribute.
Hi, I was wondering is it possible to apply attributes to the conditional elements on document which they are commented out?
Does your "Full End-to-End Example" have a mistake? The src and dest fields have to be inside the main task, haven't they?
I'm working with a index.html.erb file (rails file), and I need to update the src attribute of a script to be something like this: ``` ``` I'm using the update...
Hi @cgross Thanks for your good grunt task. I have an issue with your grunt. In some cases, I don't want dom-munger replace /> in link, meta tags. So, how...
Adds a source map of retrieved values according to the processed source, to make use of a source arrays. Extends to `{writeto}SrcMap`. Fixes #32 #### Example ``` javascript grunt.initConfig({ dom_munger:...
I want to collect _all the javascript_ file references (paths) from _all html files_ [src]. Is there a way to achieve this? Currently, the writeto variable **jsRefs is getting overwritten**...
``` I have a html file in a web project, part of it reads something like: somethingsomething else something I want to modify Note that h4-h5 mistake, it has been...