Giter Club home page Giter Club logo

Comments (2)

renggli avatar renggli commented on August 10, 2024

First of all, sorry for not replying earlier. I totally missed this report.

I've tested your input string with the following code:

library playground;

import 'package:petitparser/xml.dart';

void printXml(XmlNode node, [level = 0]) {
  var indent = new String.fromCharCodes(new List.filled(2 * level, ' '.codeUnitAt(0)));
  var data = node is XmlParent ? '' : node.toString();
  print('$indent${node.runtimeType.toString()}: $data');
  for (var attr in node.attributes) {
    printXml(attr, level + 1);
  }
  for (var child in node.children) {
    printXml(child, level + 1);
  }
}

void main() {
  final parser = new XmlParser();
  final input = '<content type="text">Google is sponsoring at'
      '<a href="http://www.pubcon.com/">WebmasterWorld PubCon 2006\</a>. Come and'
      'visit us at the booth or join us for an evening demo reception where we'
      'will be talking "5 ways to enhance your website with Google Code".'
      'After all, it is Vegas, baby! See you soon.</content>';
  final result = parser.parse(input);
  printXml(result.value);
}

This prints:

XmlDocument: 
  XmlElement: 
    XmlAttribute: type="text"
    XmlText: Google is sponsoring at
    XmlElement: 
      XmlAttribute: href="http://www.pubcon.com/"
      XmlText: WebmasterWorld PubCon 2006
    XmlText: . Come andvisit us at the booth or join ...

Which looks good to me. What exactly did you expect instead?

from dart-petitparser.

renggli avatar renggli commented on August 10, 2024

Closed as clarification is missing. Furthermore the XML package is now maintained in https://github.com/renggli/dart-xml. Please reopen there if necessary.

from dart-petitparser.

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.