Update readme.md with version 1.0.9, corrected header typo, and added examples for alternate ordered list syntax.

This commit is contained in:
2026-01-10 15:05:23 +01:00
parent 850f66affd
commit c9bbb0c3a7

View File

@@ -1,4 +1,4 @@
# Markdown parser in kotlin multiplatfom common # Markdown parser in kotlin multiplatform common
A basic markdown parser in kotlin multiplatform common. It can be used on any platform supported by kotlin. A basic markdown parser in kotlin multiplatform common. It can be used on any platform supported by kotlin.
By default only javascript en the jvm are configured. Fork the repository and add any platform you need, no By default only javascript en the jvm are configured. Fork the repository and add any platform you need, no
@@ -8,7 +8,7 @@ See the [Markdown.kt](src/commonMain/kotlin/nl/astraeus/markdown/parser/Markdown
## JVM & JS versions available on maven central ## JVM & JS versions available on maven central
implementation("nl.astraeus:markdown-parser:1.0.4") implementation("nl.astraeus:markdown-parser:1.0.9")
## Usage ## Usage
@@ -82,6 +82,12 @@ Text can be formatted with **bold**, *italic*, ***bold and italic***, ~~striketh
### Ordered list alternate syntax ### Ordered list alternate syntax
#. Item 1
#. Item 2
#. Item 3
### Or
-. Item 1 -. Item 1
-. Item 2 -. Item 2
-. Item 3 -. Item 3