GithubHelp home page GithubHelp logo

Comments (5)

tautologistics avatar tautologistics commented on May 28, 2024

That is actually something I had wanted to do a while back but then life got in the way. Going to tag this as "Fix in 1.8". I guess one could call it a bug because it is missing =)

from node-htmlparser.

jaap3 avatar jaap3 commented on May 28, 2024

Something like this does what you want. You probably want to special case some things in order to get the output you wish...

function toHTML(nodeSet, asArray) {
  var html = [];
  nodeSet.forEach(function (node) {
      switch (node.type) {
          case 'text':
          html.push(node.data);
          break;
          case 'directive':
          html.push('<!' + node.data + '>');
          break;
          case 'comment':
          html.push('<!--' + node.data + '>');
          break;
          default:
          html.push('<' + node.data + '>');
          if (node.children)
              html = html.concat(toHTML(node.children, true));
          html.push('</' + node.name + '>');
          break;
      }
  });
  if (asArray)
      return html;
  return html.join('');
} 

from node-htmlparser.

tlrobinson avatar tlrobinson commented on May 28, 2024

This would be nice to have. In the meantime I'm using @jaap3's snippet, except I had to change the "directive" case to '<' + node.data + '>', the "comment" case to '<!--' + node.data + '-->', and strip self-closing "/" in for default tags using node.data.replace(/\s*\/$/,''), otherwise it works great.

from node-htmlparser.

resistdesign avatar resistdesign commented on May 28, 2024

Here is a version I fleshed out in case it helps anyone:
(NOTE: It only returns a string.)

var VOID_HTML_ELEMENT_MAP = {
  area: true,
  base: true,
  br: true,
  col: true,
  command: true,
  embed: true,
  hr: true,
  img: true,
  input: true,
  keygen: true,
  link: true,
  meta: true,
  param: true,
  source: true,
  track: true,
  wbr: true
};

function toHTML(nodeSet) {
    var html = [];

    if (nodeSet) {
      nodeSet.forEach(function(node) {
        switch (node.type) {
          case 'text':
            html.push(node.data);
            break;
          case 'directive':
            html.push('<' + node.data + '>');
            break;
          case 'comment':
            html.push('<!-- ' + node.data + ' -->');
            break;
          default:
            html.push('<' + node.data.replace(/\/$/, ''));
            if (!/\/$/.test(node.data) && !VOID_HTML_ELEMENT_MAP[node.name]) {
              html.push('>');
              if (node.children) {
                html.push(toHTML(node.children));
              }
              html.push('</' + node.name + '>');
            } else if (!/\/$/.test(node.data)) {
              html.push('>');
            } else {
              html.push('/>');
            }
            break;
        }
      });
    }

    return html.join('');
  }

I'm sure it could be optimized but it's a start :)

from node-htmlparser.

resistdesign avatar resistdesign commented on May 28, 2024

Just a note, the point of the VOID_HTML_ELEMENT_MAP is so that it can do something like <br> or <br/> depending on how it was in the html before it was parsed.

from node-htmlparser.

Related Issues (20)

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.