Skip to content

Commit 6fc1b5f

Browse files
feat: divide docs into separate packages
1 parent 8da1465 commit 6fc1b5f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

core/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ kotlin {
3333
tasks.withType<DokkaTaskPartial>().configureEach {
3434
dokkaSourceSets.configureEach {
3535
moduleName.set("parkour")
36-
includes.from(projectDir.resolve("docs.md"))
36+
includes.from(fileTree(projectDir) {
37+
include("**/docs.md")
38+
})
3739
}
3840
}
3941

core/docs.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
11
# Module parkour
22

3-
A parser combinator library in Kotlin for JVM users.
4-
5-
# Package io.github.cybercodernaj.parkour.lexer
6-
7-
Docs for the lexer
3+
A parser combinator library in Kotlin for JVM users.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Package io.github.cybercodernaj.parkour.lexer
2+
3+
Docs for the lexer

0 commit comments

Comments
 (0)