+
+ true
+ true
+ false
+ false
+
+
+
\ No newline at end of file
diff --git a/.idea/runConfigurations/Run_checks.xml b/.idea/runConfigurations/Run_checks.xml
new file mode 100644
index 000000000..f3ae0f42b
--- /dev/null
+++ b/.idea/runConfigurations/Run_checks.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ false
+ false
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 5de89917d..551a67aa9 100644
--- a/README.md
+++ b/README.md
@@ -308,10 +308,10 @@ API:
```kotlin
val myAwtFamily = myFont.asComposeFontFamily()
-// This will attempt to resolve the logical AWT font
+// This will attempt to resolve the logical AWT font
val myLogicalFamily = Font("Dialog").asComposeFontFamily()
-// This only works in the IntelliJ Platform,
+// This only works in the IntelliJ Platform,
// since JBFont is only available there
val myLabelFamily = JBFont.label().asComposeFontFamily()
```
diff --git a/markdown/core/build.gradle.kts b/markdown/core/build.gradle.kts
index 88a56b0fe..8b5c61f1c 100644
--- a/markdown/core/build.gradle.kts
+++ b/markdown/core/build.gradle.kts
@@ -7,10 +7,10 @@ plugins {
dependencies {
compileOnly(projects.ui)
-
- implementation(libs.commonmark.core)
+ api(libs.commonmark.core)
testImplementation(compose.desktop.uiTestJUnit4)
+ testImplementation(projects.ui)
}
publicApiValidation {
diff --git a/markdown/extension-gfm-alerts/build.gradle.kts b/markdown/extension-gfm-alerts/build.gradle.kts
index def637ace..1bc2ba0d7 100644
--- a/markdown/extension-gfm-alerts/build.gradle.kts
+++ b/markdown/extension-gfm-alerts/build.gradle.kts
@@ -12,6 +12,8 @@ dependencies {
compileOnly(libs.commonmark.core)
testImplementation(compose.desktop.uiTestJUnit4)
+ testImplementation(projects.markdown.core)
+ testImplementation(projects.ui)
}
publicApiValidation {