Coder Social home page Coder Social logo

Using A Visitor about commonmark-java HOT 5 CLOSED

commonmark avatar commonmark commented on August 23, 2024
Using A Visitor

from commonmark-java.

Comments (5)

robinst avatar robinst commented on August 23, 2024 1

Thanks @pcj, that's right. Maybe we should change the example to something more meaningful. Maybe visiting all links and printing the destination? Any other ideas?

from commonmark-java.

pcj avatar pcj commented on August 23, 2024

Paragraph nodes are not terminal nodes, they typically contain children that ultimately lead to terminals, like code and text elements. Descend down the tree as you are doing with visitChildren and override visit(Text) and get the string literal from there:

        @Override
        public void visit(org.commonmark.node.Text node) {
            System.out.println(node.getLiteral());
        }

from commonmark-java.

silenuz avatar silenuz commented on August 23, 2024

Okay thanks. I had seen Issue #8 and thought that maybe CommonMark might work the same as Pegdown where you can get the content of the node as a string. I was hoping to use Commonmark's AST to do syntax hi-lighting as Pegdown has so many dependencies and I prefer CommonMark's renderer.

from commonmark-java.

pcj avatar pcj commented on August 23, 2024

@robinst Word counting examples are pretty standard in the text mining / classification domains. Could update the example to count words in a Markdown document.

from commonmark-java.

robinst avatar robinst commented on August 23, 2024

Good idea, changed the example now: https://github.com/atlassian/commonmark-java#use-a-visitor-to-process-parsed-nodes

from commonmark-java.

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.