-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize
ast
packages to expand base node classes
- Loading branch information
Showing
80 changed files
with
873 additions
and
763 deletions.
There are no files selected for viewing
3 changes: 3 additions & 0 deletions
3
core/src/main/kotlin/eu/iamgio/quarkdown/ast/AstAttributes.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
239 changes: 0 additions & 239 deletions
239
core/src/main/kotlin/eu/iamgio/quarkdown/ast/BlockNodes.kt
This file was deleted.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
core/src/main/kotlin/eu/iamgio/quarkdown/ast/InlineContent.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package eu.iamgio.quarkdown.ast | ||
|
||
/** | ||
* Represents an ordered sequence of inline nodes, such as text, links, images, etc., | ||
* that can be part of a block's text, such as a paragraph or heading. | ||
*/ | ||
typealias InlineContent = List<Node> |
Oops, something went wrong.