https://github.com/buoyad/dom-tree
Creates a Document Object Model based on input HTML file and performs manipulations on the file by manipulating the tree.
https://github.com/buoyad/dom-tree
Last synced: 4 months ago
JSON representation
Creates a Document Object Model based on input HTML file and performs manipulations on the file by manipulating the tree.
- Host: GitHub
- URL: https://github.com/buoyad/dom-tree
- Owner: buoyad
- Created: 2015-04-15T22:03:55.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-20T16:25:29.000Z (almost 11 years ago)
- Last Synced: 2025-02-25T08:45:27.266Z (about 1 year ago)
- Language: Java
- Size: 145 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DOM-Tree
Creates a Document Object Model based on input HTML file and performs manipulations on the file by manipulating the tree.
This was yet another student assignment in Rutgers' CS112 (Data Structures) course. The driver was written by course instructors,
while the bulk of methods in src/structures/Tree.java were written by Daniel Ayoub. These methods include build, replaceTag, boldRow,
removeTag, and addTag, including all helper/recursive methods that these methods call.