Test post
This commit is contained in:
21
test-post-1/17-06-2025.md
Normal file
21
test-post-1/17-06-2025.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# Test Post
|
||||
|
||||
This is my second test post.
|
||||
|
||||
Parses input text to a tree of nodes. Start with the builder method, configure the parser and build it. Example:
|
||||
|
||||
```java
|
||||
Parser parser = Parser.builder().build();
|
||||
Node document = parser.parse("input text");
|
||||
```
|
||||
|
||||
<!-- more -->
|
||||
|
||||
Renders a tree of nodes to HTML. Start with the builder method to configure the renderer. Example:
|
||||
|
||||
```java
|
||||
HtmlRenderer renderer = HtmlRenderer.builder().escapeHtml(true).build();
|
||||
renderer.render(node);
|
||||
```
|
||||
|
||||

|
||||
BIN
test-post-1/img.png
Normal file
BIN
test-post-1/img.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Reference in New Issue
Block a user