Giter Site home page Giter Site logo

parse5-utils's Introduction

parse5-utils

NPM version Build status Test coverage Dependency Status License Downloads

Low-level parse5 node manipulation utilities.

API

const utils = require('parse5-utils')

let document = utils.parse(html, [smart])

Parse an HTML string, If smart, returns a document or documentFragment, appropriately. Otherwise, always parses it as a document.

let fragment = utils.parseFragment(html)

Parses HTML as a fragment.

let html = utils.serialize(document || fragment)

Converts an AST into an HTML string.

let attributes = utils.attributesOf(node)

Get the attributes of a node as an object.

setAttribute(node, key, value)

Set an attribute of a node.

getAttribute(node, key)

Get the attribute of a node.

node.attrs = utils.toAttrs(attributes)

Set a node's attributes from an object.

let node = utils.createNode(tagName)

Create a node with a specific tag name.

let textNode = utils.createTextNode(text)

Create a text node.

node = utils.prepend(parent, node)

Add a child to a node, making it the first child.

node = utils.append(parent, node)

Add a child to a node, making it the last child.

node = utils.replace(originalNode, newNode)

Replace a node with another node.

node = utils.remove(node)

Remove a node.

nodes = utils.flatten(node || [nodes])

Get all the nodes in a tree as a flat array.

let text = utils.textOf(node)

Get the text of a node.

utils.setText(node, text)

Set the text of a node.

parse5-utils's People

Contributors

greenkeeperio-bot avatar jonathanong avatar

Watchers

 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.