Skip to content

Commit

Permalink
Add support for syntax highlighting of '.properties' files (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
MelanX authored Mar 2, 2025
1 parent 604f875 commit f983ac1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/gettingstarted/modfiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ While the `group` property in the `build.gradle` is only necessary if you plan t

The group id should be set to your top-level package. See [Packaging][packaging] for more information.

```text
// In your gradle.properties file
```properties
# In your gradle.properties file
mod_group_id=com.example
```

Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ const config = {
prism: {
theme: lightTheme,
darkTheme: darkTheme,
additionalLanguages: ["java", "gradle", "toml", "groovy", "kotlin", "javascript", "json", "json5"],
additionalLanguages: ["java", "gradle", "toml", "groovy", "kotlin", "javascript", "json", "json5", "properties"],
},
algolia: {
// The application ID provided by Algolia
Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-1.20.4/gettingstarted/modfiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ While the `group` property in the `build.gradle` is only necessary if you plan t

The group id should be set to your top-level package. See [Packaging][packaging] for more information.

```text
// In your gradle.properties file
```properties
# In your gradle.properties file
mod_group_id=com.example
```

Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-1.20.6/gettingstarted/modfiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ While the `group` property in the `build.gradle` is only necessary if you plan t

The group id should be set to your top-level package. See [Packaging][packaging] for more information.

```text
// In your gradle.properties file
```properties
# In your gradle.properties file
mod_group_id=com.example
```

Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-1.21.1/gettingstarted/modfiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ While the `group` property in the `build.gradle` is only necessary if you plan t

The group id should be set to your top-level package. See [Packaging][packaging] for more information.

```text
// In your gradle.properties file
```properties
# In your gradle.properties file
mod_group_id=com.example
```

Expand Down
4 changes: 2 additions & 2 deletions versioned_docs/version-1.21.3/gettingstarted/modfiles.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ While the `group` property in the `build.gradle` is only necessary if you plan t

The group id should be set to your top-level package. See [Packaging][packaging] for more information.

```text
// In your gradle.properties file
```properties
# In your gradle.properties file
mod_group_id=com.example
```

Expand Down

0 comments on commit f983ac1

Please sign in to comment.