Skip to content

Instantly share code, notes, and snippets.

@jaydenlin
Last active August 29, 2015 14:06
Show Gist options
  • Save jaydenlin/a4290554933b4f00d864 to your computer and use it in GitHub Desktop.
Save jaydenlin/a4290554933b4f00d864 to your computer and use it in GitHub Desktop.
def htmlTagToCsTag(doc, selector,csTag)
htmlTags=doc.css(selector)
index=0
for htmlTag in htmlTags
if index==0
htmlTag.replace(csTag)
else
htmlTag.remove
end
index=index+1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment