Skip to content
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

Add support for syntax highlighting of '.properties' files #233

Merged
merged 2 commits into from
Mar 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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