From: Dmitry Fedotov Date: Mon, 15 Apr 2024 20:57:18 +0000 (+0300) Subject: Remove kotlin and groovy utf symbols. X-Git-Url: https://git.dmfe.net/?a=commitdiff_plain;h=2c66f73a9e7ca30588fd18199453b48279f107bd;p=dmfe-website Remove kotlin and groovy utf symbols. --- diff --git a/docs/gradle/core-concepts/build_file_basics.md b/docs/gradle/core-concepts/build_file_basics.md index 5accb75..7cc48e7 100644 --- a/docs/gradle/core-concepts/build_file_basics.md +++ b/docs/gradle/core-concepts/build_file_basics.md @@ -24,7 +24,7 @@ The build script is either a `build.gradle` file written in Groovy or a Example of the build script: - ```kotlin title="󱈙 settings.gradle.kts" + ```kotlin title="settings.gradle.kts" plugins { id("application") (1) } @@ -35,7 +35,7 @@ Example of the build script: ``` - ```groovy title=" settings.gradle" + ```groovy title="settings.gradle" plugins { id 'application' (1) } diff --git a/docs/gradle/core-concepts/settings_file_basics.md b/docs/gradle/core-concepts/settings_file_basics.md index 7dec86c..0f344cc 100644 --- a/docs/gradle/core-concepts/settings_file_basics.md +++ b/docs/gradle/core-concepts/settings_file_basics.md @@ -25,7 +25,7 @@ The _Groovy DSL_ and _Kotlin DSL_ are the only accepted languages for Gradle scr The settings file is typically found in the root directory of the project: - ```kotlin title="󱈙 settings.gradle.kts" + ```kotlin title="settings.gradle.kts" rootProject.name = "root-project" (1) include("sub-project-a") (2) @@ -34,7 +34,7 @@ The settings file is typically found in the root directory of the project: ``` - ```groovy title=" settings.gradle" + ```groovy title="settings.gradle" rootProject.name = 'root-project' (1) include('sub-project-a') (2)