Skip to content

Commit

Permalink
update for 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mfwgenerics committed Jan 27, 2023
1 parent f0968e1 commit cb71178
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Add the `markout` dependency
```kotlin
/* build.gradle.kts */
dependencies {
implementation("io.koalaql:markout:0.0.5")
implementation("io.koalaql:markout:0.0.6")
}
```

Expand Down Expand Up @@ -67,7 +67,7 @@ If you only want to use Markout to generate Markdown strings then you can use
markdownString {
h1("My Markdown")

-"Text with some "+i("italics")+"."
-"Text with some *italics*."
}
```

Expand Down
4 changes: 2 additions & 2 deletions readme/src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import io.koalaql.markout.md.markdown
import io.koalaql.markout.md.markdownString
import kotlin.io.path.Path

private val CURRENT_VERSION = "0.0.5"
private val CURRENT_VERSION = "0.0.6"

fun main() = markout {
directory("docs") {
Expand Down Expand Up @@ -82,7 +82,7 @@ fun main() = markout {
markdownString {
h1("My Markdown")

-"Text with some "+i("italics")+"."
-"Text with some *italics*."
}
}

Expand Down

0 comments on commit cb71178

Please sign in to comment.