From c9bbb0c3a7bf5f237be8e05677c5bb6bd39579ec Mon Sep 17 00:00:00 2001 From: rnentjes Date: Sat, 10 Jan 2026 15:05:23 +0100 Subject: [PATCH] Update `readme.md` with version 1.0.9, corrected header typo, and added examples for alternate ordered list syntax. --- readme.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 77ba467..849e7da 100644 --- a/readme.md +++ b/readme.md @@ -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. 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 - implementation("nl.astraeus:markdown-parser:1.0.4") + implementation("nl.astraeus:markdown-parser:1.0.9") ## Usage @@ -82,6 +82,12 @@ Text can be formatted with **bold**, *italic*, ***bold and italic***, ~~striketh ### Ordered list alternate syntax +#. Item 1 +#. Item 2 +#. Item 3 + +### Or + -. Item 1 -. Item 2 -. Item 3