Coder Social home page Coder Social logo

project_dom_tree's Introduction

project_dom_tree

Like leaves on the wind

Bideo Wego

Usage

  1. Make your way to IRB within the project root directory

    $ cd to/this/directory
    $ irb
    
  2. Read the HTML file

    html = File.read('test.html')
  3. Pass the returned string to the DOMReader

    • NOTE: this will automatically build the tree from the string
    d = DOMReader.new(html)
  4. Want a quick way to verify the rendered output is the same as the HTML string?

    html.gsub(/\s/, '') == d.render.gsub(/\s/, '')
  5. Render the tree to a string

    puts d.render
  6. Search for nodes by :element, :text, or an attribute

    d.search_by(:element, 'html')
    d.search_by(:text, 'One h1')
    d.search_by(:id, 'main-area')
    d.search_by(:class, 'top-div')
  7. Search all the descendents of a node with #search_children

    d.search_children(d.root, :element, 'li')
  8. Search only direct children of a node with #search_ancestors

    d.search_ancestors(d.root, :element, 'head')

A data structures, algorithms, file I/O, ruby and regular expression (regex) project from the Viking Code School

project_dom_tree's People

Contributors

bideowego avatar eriktrautman avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.