Skip to content

Commit a24e838

Browse files
author
Torsten Krause
committed
Add an informal enumeration that lists all kinds of Markdom nodes
1 parent 1b38c33 commit a24e838

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package io.markdom.common;
2+
3+
public enum MarkdomNodeKind {
4+
5+
DOCUMENT,
6+
7+
CODE_BLOCK,
8+
9+
COMMENT_BLOCK,
10+
11+
DIVISION_BLOCK,
12+
13+
HEADING_BLOCK,
14+
15+
ORDERED_LIST_BLOCK,
16+
17+
PARAGRAPH_BLOCK,
18+
19+
QUOTE_BLOCK,
20+
21+
UNORDERED_LIST_BLOCK,
22+
23+
LIST_ITEM,
24+
25+
CODE_CONTENT,
26+
27+
EMPHASIS_CONTENT,
28+
29+
IMAGE_CONTENT,
30+
31+
LINE_BREAK_CONTENT,
32+
33+
LINK_CONTENT,
34+
35+
TEXT_CONTENT;
36+
37+
}

0 commit comments

Comments
 (0)