Parses input text to a tree of nodes. <p> Start with the {@link #builder} method, configure the parser and build it. Example: <pre><code> Parser parser = Parser.builder().build(); Node document = parser.parse("input text"); </code></pre>
See Source File