You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -130,7 +133,10 @@ By default, the `MarkdownText` animates size changes (if images are loaded).
130
133
Markdown(
131
134
content,
132
135
animations = markdownAnimations(
133
-
animateTextSize = { this/** No animation */ }
136
+
animateTextSize = {
137
+
this
138
+
/** No animation */
139
+
}
134
140
),
135
141
}
136
142
```
@@ -139,7 +145,7 @@ Markdown(
139
145
140
146
Starting with 0.16.0 the library includes support
141
147
for [extended-spans](https://github.com/saket/extended-spans).
142
-
>The library was integrated to make it multiplatform-compatible.
148
+
>The library was integrated to make it multiplatform-compatible.
143
149
>All credits for its functionality go to [SaketNarayan](https://github.com/saket).
144
150
145
151
Itisnot enabled by default, however you can enable it quickly by configuring the `extendedSpans`
@@ -266,7 +272,8 @@ Markdown(
266
272
267
273
### TableSupport
268
274
269
-
Starting with 0.30.0, the library includes support for rendering tables in markdown. The `Markdown` composable will automatically handle table elements in your markdown content.
275
+
Starting with 0.30.0, the library includes support for rendering tables in markdown. The `Markdown`
276
+
composable will automatically handle table elements in your markdown content.
270
277
271
278
```kotlin
272
279
val markdown ="""
@@ -303,7 +310,8 @@ Markdown(
303
310
```
304
311
305
312
> [!NOTE]
306
-
>0.21.0 adds JVM support forthis dependency via `HTTPUrlConnection` -> however thisis expected to be removed in the
313
+
>0.21.0 adds JVM support forthis dependency via `HTTPUrlConnection` -> however thisis expected to
314
+
> be removed in the
307
315
> future.
308
316
309
317
> [!NOTE]
@@ -330,14 +338,15 @@ Markdown(
330
338
331
339
The library (introduced with 0.27.0) offers optional support for syntax highlighting via
332
340
the [Highlights](https://github.com/SnipMeDev/Highlights) project.
333
-
This support isnot included in the core, and can be enabled by adding the `multiplatform-markdown-renderer-code`
341
+
This support isnot included in the core, and can be enabled by adding the
0 commit comments