Skip to content

Commit b8f0956

Browse files
committed
Fix: Docusaurus additionalLanguages
1 parent c4ac1df commit b8f0956

File tree

7 files changed

+14
-13
lines changed

7 files changed

+14
-13
lines changed

Website/blog/2026-03-04-high-dpi-embedded-processes/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ NETworkManager is a C#/WPF application that uses `WindowsFormsHost` to host a na
1818

1919
The XAML wires up the `DpiChanged` event and embeds a WinForms `Panel` as the hosting surface:
2020

21-
```xaml
21+
```xml
2222
<WindowsFormsHost DpiChanged="WindowsFormsHost_DpiChanged">
2323
<windowsForms:Panel x:Name="WindowHost" />
2424
</WindowsFormsHost>

Website/docs/application/aws-session-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ You can still use AWS Session Manager within NETworkManager with the [PowerShell
1616

1717
With **AWS** (Systems Manager) **Session Manager**, you can connect to and manage an EC2 instance without opening inbound ports, running a bastion host, or managing SSH keys. The integration of AWS Session Manager with NETworkManger supports tabs and profiles for hosts. The connection can be established via a profile (double-click, Enter key or right-click `Connect`) or directly via the [connection](#connect) dialog. You can also synchronize your EC2 instances from AWS. To connect to the instances a PowerShell console is used with the AWS CLI and the AWS Session Manager plugin. The connection to the instances is established via the following command:
1818

19-
```PowerShell
19+
```powershell
2020
aws ssm start-session --target <instance-id>
2121
```
2222

Website/docs/application/network-interface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In addition, further actions can be performed using the buttons at the bottom le
7070

7171
The following command is executed in an elevated PowerShell to enable the `dhcpstaticipcoexistence` option:
7272

73-
```PowerShell
73+
```powershell
7474
netsh interface ipv4 set interface interface="Ethernet" dhcpstaticipcoexistence=enabled
7575
```
7676

@@ -90,7 +90,7 @@ In addition, further actions can be performed using the buttons at the bottom le
9090

9191
If you have previously added an additional IPv4 address to a network adapter that is configured for DHCP, the `netsh` option `dhcpstaticipcoexistence` remains active. To disable it, run the following command in an elevated PowerShell:
9292

93-
```PowerShell
93+
```powershell
9494
netsh interface ipv4 set interface interface="Ethernet" dhcpstaticipcoexistence=disabled
9595
```
9696

Website/docs/commandline-arguments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Displays the help dialog.
1414

1515
**Example:**
1616

17-
```PowerShell
17+
```powershell
1818
NETworkManager.exe --help
1919
```
2020

@@ -24,7 +24,7 @@ Resets all application settings.
2424

2525
**Example:**
2626

27-
```PowerShell
27+
```powershell
2828
NETworkManager.exe --reset-settings
2929
```
3030

@@ -62,7 +62,7 @@ Start a specific application on startup.
6262

6363
**Example:**
6464

65-
```PowerShell
65+
```powershell
6666
NETworkManager.exe --application:PingMonitor
6767
```
6868

@@ -76,7 +76,7 @@ Indicates whether the application was started automatically (via autostart).
7676

7777
**Example:**
7878

79-
```PowerShell
79+
```powershell
8080
NETworkManager.exe --autostart
8181
```
8282

@@ -86,6 +86,6 @@ Process ID of the old application process to wait for it to end if the applicati
8686

8787
**Example:**
8888

89-
```PowerShell
89+
```powershell
9090
NETworkManager.exe --restart-pid:35674
9191
```

Website/docs/faq/powershell-cmd-apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Create a new connection or profile with the following settings:
55
- Remote console: `False`
66
- Command: `<FilePath> <Arguments>`
77

8-
```PowerShell
8+
```powershell
99
# Connect to WSL
1010
wsl -d <DISTRIBUTION>
1111

Website/docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ const config = {
150150
prism: {
151151
theme: prismThemes.github,
152152
darkTheme: prismThemes.dracula,
153+
additionalLanguages: ["csharp", "json", "powershell"],
153154
},
154155
}),
155156

Website/src/pages/download.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ NETworkManager is available through the following package managers:
145145

146146
### Chocolatey
147147

148-
```PowerShell
148+
```powershell
149149
# Install via Chocolatey
150150
choco install networkmanager
151151
```
@@ -154,7 +154,7 @@ Chocolatey package: [chocolatey.org/packages/NETworkManager](https://chocolatey.
154154

155155
### WinGet
156156

157-
```PowerShell
157+
```powershell
158158
# Install via WinGet
159159
winget install BornToBeRoot.NETworkManager
160160
```
@@ -163,7 +163,7 @@ WinGet source: [github.com/microsoft/winget-pkgs](https://github.com/microsoft/w
163163

164164
### Evergreen
165165

166-
```PowerShell
166+
```powershell
167167
# Get release via Evergreen
168168
Get-EvergreenApp -Name NETworkManager
169169

0 commit comments

Comments
 (0)