Skip to content

Commit

Permalink
feat: divide docs into separate packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cybercoder-naj committed Jul 3, 2024
1 parent 8da1465 commit 6fc1b5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 3 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ kotlin {
tasks.withType<DokkaTaskPartial>().configureEach {
dokkaSourceSets.configureEach {
moduleName.set("parkour")
includes.from(projectDir.resolve("docs.md"))
includes.from(fileTree(projectDir) {
include("**/docs.md")
})
}
}

Expand Down
6 changes: 1 addition & 5 deletions core/docs.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
# Module parkour

A parser combinator library in Kotlin for JVM users.

# Package io.github.cybercodernaj.parkour.lexer

Docs for the lexer
A parser combinator library in Kotlin for JVM users.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Package io.github.cybercodernaj.parkour.lexer

Docs for the lexer

0 comments on commit 6fc1b5f

Please sign in to comment.