Skip to content

dev -> main #398

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 40 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
7940cc6
Fix VM example in README
zsmb13 Apr 18, 2025
bc393a6
Merge pull request #381 from zsmb13/patch-1
mikepenz Apr 19, 2025
0b2f358
Remove unsued main source sets and AndroidManifest files
Goooler Apr 19, 2025
4610373
Merge pull request #382 from Goooler/remove-manifest
mikepenz Apr 19, 2025
cc9e804
- fix deprecation warning for aboutlibs in iOS sample
keta1 Apr 21, 2025
9606b1f
Merge pull request #383 from keta1/other/aboutlibs
mikepenz Apr 21, 2025
583441d
- update to compose 1.8.0 / compose multiplatform 1.8.0-rc01
mikepenz Apr 24, 2025
9f6bdde
- update all aboutlibs files
mikepenz Apr 24, 2025
9fd4399
- exclude compose runtime from coil
mikepenz Apr 24, 2025
ab7776f
- temporarily patch until coil3 has compose 1.8.0 based release
mikepenz Apr 24, 2025
0593644
Merge pull request #384 from mikepenz/feature/compose_1.8.0
mikepenz Apr 24, 2025
1f3c5cf
- [release] v0.34.0-rc01
mikepenz Apr 24, 2025
2752097
- make `rememberMarkdownState` `immediate` if we are in `LocalInspect…
mikepenz Apr 25, 2025
278e003
Merge pull request #386 from mikepenz/fix/385
mikepenz Apr 25, 2025
cd7e918
- update to experimental version of aboutlibraries plugin, to test be…
mikepenz Apr 25, 2025
f8cb7d7
- update to final 12.1.0-rc02 aboutlibraries version
mikepenz Apr 25, 2025
6550d20
- update aboutlibraries.json
mikepenz Apr 25, 2025
efb5195
Merge pull request #387 from mikepenz/feature/experimental_aboutlibs_…
mikepenz Apr 25, 2025
4d256d6
- [release] v0.34.0-rc02
mikepenz Apr 25, 2025
ade4434
- Add export configuration for library definitions
keta1 Apr 26, 2025
cb929c3
Merge pull request #388 from keta1/other/sample
mikepenz Apr 26, 2025
b5bc6bf
- update to aboutlibraries 12.1.0-rc03
mikepenz Apr 26, 2025
341a9f2
Merge pull request #389 from mikepenz/other/aboutlibs_update
mikepenz Apr 27, 2025
bdea4dd
- reorder function arguments to allow function block to be passed
mikepenz Apr 27, 2025
8f317f4
- update *.api
mikepenz Apr 27, 2025
218308b
Merge pull request #392 from mikepenz/fix/reorder_function_arguments
mikepenz Apr 27, 2025
383eb7b
Add way to specify custom inline content
Secozzi Apr 28, 2025
bae5fb5
Wrap map creation in remember block
Secozzi Apr 29, 2025
0b0f697
- fix empty line in block quotes not properly handled
mikepenz May 1, 2025
33c0fd9
- expand tests to include more block quote cases
mikepenz May 1, 2025
3638045
- add migration note
mikepenz May 1, 2025
8717252
- fix comparison
mikepenz May 1, 2025
6dd54d0
- slight optimisation to reduce lookup for block line height
mikepenz May 1, 2025
bed8413
Merge pull request #395 from mikepenz/fix/391
mikepenz May 1, 2025
933d9e5
Merge pull request #393 from Secozzi/inline
mikepenz May 1, 2025
754c2d1
- [release] v0.34.0-rc03
mikepenz May 1, 2025
e2c31e3
- update gradle to 8.14
mikepenz May 7, 2025
f11652d
- update to compose-multiplatform 1.8.0
mikepenz May 7, 2025
ab88299
Merge pull request #397 from mikepenz/feature/compose_1.8.0
mikepenz May 9, 2025
14ee4fd
- [release] v0.34.0
mikepenz May 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions MIGRATION.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
### Upgrade Notes

#### Version 0.34.0

- **Dependency Upgrade**: Compose 1.8.0 / Compose Multiplatform 1.8.0
- **Breaking Change**: Reordered arguments for `markdownAnnotator` to improve backwards comp.
- **Behavior Change**: Handle empty lines in block quotes. (Using block quote text size as height)

#### Version 0.33.0

- **Dependency Upgrade**: Kotlin 2.1.20
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ val markdownFlow = parseMarkdownFlow("# Markdown")
.stateIn(lifecycleScope, SharingStarted.Eagerly, State.Loading())

// In the Composable use the flow
val state by markdownFlow.collectAsStateWithLifecycle(State.Loading())
val state by markdownFlow.collectAsStateWithLifecycle()
Markdown(state)
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Maven stuff
GROUP=com.mikepenz
VERSION_NAME=0.33.0
VERSION_CODE=3300
VERSION_NAME=0.34.0
VERSION_CODE=3400
#
POM_URL=https://github.com/mikepenz/multiplatform-markdown-renderer
POM_SCM_URL=https://github.com/mikepenz/multiplatform-markdown-renderer
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ androidx-activityCompose = "1.10.1"
coil = "3.1.0"
coil2 = "2.7.0"
markdown = "0.7.3"
ktor = "3.1.2"
ktor = "3.1.3"
highlights = "1.0.0"

[libraries]
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ case "$( uname )" in #(
NONSTOP* ) nonstop=true ;;
esac

CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
CLASSPATH="\\\"\\\""


# Determine the Java command to use to start the JVM.
Expand Down Expand Up @@ -213,7 +213,7 @@ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
-jar "$APP_HOME/gradle/wrapper/gradle-wrapper.jar" \
"$@"

# Stop when "xargs" is not available.
Expand Down
4 changes: 2 additions & 2 deletions gradlew.bat
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ goto fail
:execute
@rem Setup the command line

set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
set CLASSPATH=


Comment on lines +73 to 75
Copy link
Preview

Copilot AI May 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A comment explaining why the CLASSPATH is intentionally set to an empty value (with the jar supplied via the -jar flag) would improve future maintainability.

Suggested change
set CLASSPATH=
@rem The CLASSPATH is intentionally set to an empty value because the -jar flag
@rem in the Java command below overrides it, using the classpath specified in
@rem the JAR's manifest instead.
set CLASSPATH=

Copilot uses AI. Check for mistakes.

@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" -jar "%APP_HOME%\gradle\wrapper\gradle-wrapper.jar" %*

:end
@rem End local scope for the variables with windows NT shell
Expand Down
8 changes: 7 additions & 1 deletion multiplatform-markdown-renderer-coil3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ android {

dependencies {
commonMainApi(projects.multiplatformMarkdownRenderer)
commonMainApi(libs.coil.core)

// TODO reverse once coil3 was released based on compose 1.8.0
commonMainApi(libs.coil.core) {
exclude(group = "org.jetbrains.compose.runtime")
}
commonMainCompileOnly(compose.runtime)
commonMainCompileOnly(compose.runtimeSaveable)
commonMainCompileOnly("org.jetbrains.compose.ui:ui-backhandler:1.8.0-rc01")
}
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
public final class com/mikepenz/markdown/m2/ComposableSingletons$MarkdownKt {
public static final field INSTANCE Lcom/mikepenz/markdown/m2/ComposableSingletons$MarkdownKt;
public fun <init> ()V
public final fun getLambda$-1353005456$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$-1446203683$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1377101343$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$1562902692$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$208294801$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$311006291$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1112484843$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$1405124674$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1890655630$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1996475994$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$598402550$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$925370143$multiplatform_markdown_renderer_m2_release ()Lkotlin/jvm/functions/Function3;
}

public final class com/mikepenz/markdown/m2/MarkdownColorsKt {
Expand All @@ -15,9 +15,9 @@ public final class com/mikepenz/markdown/m2/MarkdownColorsKt {
}

public final class com/mikepenz/markdown/m2/MarkdownKt {
public static final fun Markdown (Lcom/mikepenz/markdown/model/MarkdownState;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/State;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Ljava/lang/String;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/MarkdownState;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/State;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Ljava/lang/String;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
}

public final class com/mikepenz/markdown/m2/MarkdownTypographyKt {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
public final class com/mikepenz/markdown/m2/ComposableSingletons$MarkdownKt {
public static final field INSTANCE Lcom/mikepenz/markdown/m2/ComposableSingletons$MarkdownKt;
public fun <init> ()V
public final fun getLambda$-1353005456$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$-1446203683$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1377101343$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$1562902692$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$208294801$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$311006291$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1112484843$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$1405124674$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1890655630$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
public final fun getLambda$1996475994$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$598402550$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function5;
public final fun getLambda$925370143$multiplatform_markdown_renderer_m2 ()Lkotlin/jvm/functions/Function3;
}

public final class com/mikepenz/markdown/m2/MarkdownColorsKt {
Expand All @@ -15,9 +15,9 @@ public final class com/mikepenz/markdown/m2/MarkdownColorsKt {
}

public final class com/mikepenz/markdown/m2/MarkdownKt {
public static final fun Markdown (Lcom/mikepenz/markdown/model/MarkdownState;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/State;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Ljava/lang/String;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/MarkdownState;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Lcom/mikepenz/markdown/model/State;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
public static final fun Markdown (Ljava/lang/String;Lcom/mikepenz/markdown/model/MarkdownColors;Lcom/mikepenz/markdown/model/MarkdownTypography;Landroidx/compose/ui/Modifier;Lcom/mikepenz/markdown/model/MarkdownPadding;Lcom/mikepenz/markdown/model/MarkdownDimens;Lorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ImageTransformer;Lcom/mikepenz/markdown/model/MarkdownAnnotator;Lcom/mikepenz/markdown/model/MarkdownExtendedSpans;Lcom/mikepenz/markdown/model/MarkdownInlineContent;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Lcom/mikepenz/markdown/model/MarkdownAnimations;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function3;Lkotlin/jvm/functions/Function5;Lkotlin/jvm/functions/Function3;Landroidx/compose/runtime/Composer;III)V
}

public final class com/mikepenz/markdown/m2/MarkdownTypographyKt {
Expand Down
Loading
Loading