Skip to content

Commit 36db5e2

Browse files
fix: Various invalid codeblock language identifiers (#6742)
1 parent 460d43a commit 36db5e2

File tree

20 files changed

+44
-44
lines changed

20 files changed

+44
-44
lines changed

src/docs/contributing/pages/index.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Documentation is written in Markdown (via Remark) and MDX.
1414

1515
MDX has its flaws. When rendering components, any text inside of them is treated as raw text (_not_ markdown). To work around this you can use the `` tag, but it also has its issues. Generally speaking, put an empty line after the opening tag, and before the closing tag.
1616

17-
```Incorrect
17+
```plain {tabTitle:Incorrect}
1818
<Note>
1919
Don't do this as parsing will hit weird breakages
2020
</Note>
2121
```
2222

23-
```Correct
23+
```plain {tabTitle:Correct}
2424
<Note>
2525
2626
Do this

src/docs/product/security/ip-ranges.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ location ~ ^/static/dist/(.+)\.map$ {
7373

7474
To allow access to source maps with Apache you can use this example. It can either go into your _.htaccess_ or global config. This example assumes your source maps live in `/static/dist`:
7575

76-
```apache
76+
```apacheconf
7777
<FilesMatch "\.map$">
7878
Order deny,allow
7979
Deny from all

src/docs/product/sentry-basics/integrate-frontend/upload-source-maps.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Now we can invoke the `sentry-cli` to let Sentry know we have a new release, and
9797

9898
3. Replace the existing `setup_release` with:
9999

100-
```Shell
100+
```shell
101101
setup_release: create_release upload_sourcemaps
102102
```
103103

@@ -124,7 +124,7 @@ Now we can invoke the `sentry-cli` to let Sentry know we have a new release, and
124124

125125
2. Build, deploy, and rerun the project by running:
126126

127-
```Node
127+
```
128128
> npm run deploy
129129
```
130130

src/platform-includes/getting-started-install/react-native.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you wish to install Sentry's React Native SDK v4, follow the steps [here](/pl
66

77
Run `@sentry/wizard`:
88

9-
```npm
9+
```bash {tabTitle:npm}
1010
npx @sentry/wizard -s -i reactNative
1111
```
1212

src/platform-includes/session-replay/install/javascript.capacitor.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
yarn add @sentry/capacitor @sentry/replay
33
```
44

5-
```html {tabTitle: NPM}
5+
```html {tabTitle: npm}
66
npm install --save @sentry/capacitor @sentry/replay
77
```

src/platform-includes/session-replay/install/javascript.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The Replay integration is **already included** in your browser or framework SDK NPM packages. If you're using CDN bundles instead of NPM packages, you need to load the Replay integration CDN bundle in addition to your browser bundle:
22

3-
```bash {tabTitle: NPM}
3+
```bash {tabTitle: npm}
44
# Make sure to have @sentry/browser or a Framework SDK (e.g. @sentry/react) installed
55
npm install --save @sentry/browser
66
```

src/platform-includes/sourcemaps/overview/javascript.remix.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ export SENTRY_PROJECT=___PROJECT_SLUG___
3939

4040
Next, run the upload script with the following command:
4141

42-
```yarn
42+
```bash {tabTitle:Yarn}
4343
yarn sentry-upload-sourcemaps
4444

4545
# For usage details run
4646
yarn sentry-upload-sourcemaps --help
4747
```
4848

49-
```npm
49+
```bash {tabTitle:npm}
5050
node ./node_modules/@sentry/remix/scripts/sentry-upload-sourcemaps.js
5151

5252
# For usage details run

src/platform-includes/sourcemaps/overview/javascript.svelte.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ export default config;
2121

2222
If you're using Vite in you Svelte project, you can use Sentry's Vite plugin for convenience:
2323

24-
```npm
24+
```bash {tabTitle:npm}
2525
npm install @sentry/vite-plugin --save-dev
2626
```
2727

28-
```yarn
28+
```bash {tabTitle:Yarn}
2929
yarn add @sentry/vite-plugin --dev
3030
```
3131

src/platform-includes/sourcemaps/overview/javascript.vue.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ You can use the Sentry Vite plugin to automatically create [releases](/product/r
55

66
### Installation
77

8-
```npm
8+
```bash {tabTitle:npm}
99
npm install @sentry/vite-plugin --save-dev
1010
```
1111

12-
```yarn
12+
```bash {tabTitle:Yarn}
1313
yarn add @sentry/vite-plugin --dev
1414
```
1515

src/platform-includes/sourcemaps/upload/esbuild/javascript.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ You can use the Sentry esbuild plugin to automatically create releases and uploa
22

33
## Install
44

5-
```npm
5+
```bash {tabTitle:npm}
66
npm install @sentry/esbuild-plugin --save-dev
77
```
88

9-
```yarn
9+
```bash {tabTitle:Yarn}
1010
yarn add @sentry/esbuild-plugin --dev
1111
```
1212

src/platform-includes/sourcemaps/upload/rollup/javascript.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ You can use the Sentry Rollup plugin to automatically create releases and upload
22

33
## Installation
44

5-
```npm
5+
```bash {tabTitle:npm}
66
npm install @sentry/rollup-plugin --save-dev
77
```
88

9-
```yarn
9+
```bash {tabTitle:Yarn}
1010
yarn add @sentry/rollup-plugin --dev
1111
```
1212

src/platform-includes/sourcemaps/upload/vite/javascript.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ You can use the Sentry Vite plugin to automatically create releases and upload s
22

33
## Installation
44

5-
```npm
5+
```bash {tabTitle:npm}
66
npm install @sentry/vite-plugin --save-dev
77
```
88

9-
```yarn
9+
```bash {tabTitle:Yarn}
1010
yarn add @sentry/vite-plugin --dev
1111
```
1212

src/platforms/apple/common/migration.mdx

+14-14
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ SentrySDK.start { options in
8484
}
8585
```
8686

87-
```objective-c
87+
```objc
8888
@import Sentry;
8989

9090
[SentrySDK startWithConfigureOptions:^(SentryOptions *options) {
@@ -198,7 +198,7 @@ SentrySDK.start { options in
198198
}
199199
```
200200

201-
```objective-c
201+
```objc {tabTitle:Objective-C}
202202
@import Sentry;
203203

204204
[SentrySDK startWithConfigureOptions:^(SentryOptions *options) {
@@ -228,7 +228,7 @@ if (nil != eventId) {
228228
}
229229
```
230230

231-
```objective-c
231+
```objc {tabTitle:Objective-C}
232232
@import Sentry;
233233

234234
SentryId *eventId = [SentrySDK captureMessage:@"A message"];
@@ -252,7 +252,7 @@ if (eventId != SentryId.empty) {
252252
}
253253
```
254254

255-
```objective-c
255+
```objc {tabTitle:Objective-C}
256256
@import Sentry;
257257

258258
SentryId *eventId = [SentrySDK captureMessage:@"A message"];
@@ -276,7 +276,7 @@ let event = Event()
276276
event.message = "Hello World"
277277
```
278278

279-
```objective-c
279+
```objc {tabTitle:Objective-C}
280280
@import Sentry;
281281

282282
SentryEvent *event = [[SentryEvent alloc] init];
@@ -292,7 +292,7 @@ let event = Event()
292292
event.message = SentryMessage(formatted: "Hello World")
293293
```
294294

295-
```objective-c
295+
```objc {tabTitle:Objective-C}
296296
@import Sentry;
297297

298298
SentryEvent *event = [[SentryEvent alloc] init];
@@ -322,7 +322,7 @@ do {
322322
}
323323
```
324324

325-
```objective-c
325+
```objc {tabTitle:Objective-C}
326326
NSError *error = nil;
327327
SentryClient *client = [[SentryClient alloc] initWithDsn:@"___PUBLIC_DSN___" didFailWithError:&error];
328328
SentryClient.sharedClient = client;
@@ -341,7 +341,7 @@ SentrySDK.start(options: [
341341
])
342342
```
343343

344-
```objective-c
344+
```objc {tabTitle:Objective-C}
345345
[SentrySDK startWithOptions:@{
346346
@"dsn": @"___PUBLIC_DSN___",
347347
@"debug": @(YES)
@@ -356,7 +356,7 @@ Example in 4.x:`
356356
Client.shared?.breadcrumbs.add(Breadcrumb(level: .info, category: "test"))
357357
```
358358

359-
```objective-c
359+
```objc {tabTitle:Objective-C}
360360
[SentryClient.sharedClient.breadcrumbs addBreadcrumb:[[SentryBreadcrumb alloc] initWithLevel:kSentrySeverityInfo category:@"test"]];
361361
```
362362
@@ -366,7 +366,7 @@ Example in 5.x:
366366
SentrySDK.addBreadcrumb(Breadcrumb(level: .info, category: "test"))
367367
```
368368

369-
```objective-c
369+
```objc {tabTitle:Objective-C}
370370
[SentrySDK addBreadcrumb:[[SentryBreadcrumb alloc] initWithLevel:kSentrySeverityInfo category:@"test"]];
371371
```
372372
@@ -382,7 +382,7 @@ event.extra = ["ios": true]
382382
Client.shared?.send(event: event)
383383
```
384384

385-
```objective-c
385+
```objc {tabTitle:Objective-C}
386386
SentryEvent *event = [[SentryEvent alloc] initWithLevel:kSentrySeverityDebug];
387387
event.message = @"Test Message";
388388
event.environment = @"staging";
@@ -402,7 +402,7 @@ SentrySDK.capture(message: "Test Message") { (scope) in
402402
}
403403
```
404404

405-
```objective-c
405+
```objc {tabTitle:Objective-C}
406406
[SentrySDK captureMessage:@"Test Message" withScopeBlock:^(SentryScope * _Nonnull scope) {
407407
[scope setEnvironment:@"staging"];
408408
[scope setExtras:@{@"ios": @(YES)}];
@@ -422,7 +422,7 @@ u.email = "[email protected]"
422422
Client.shared?.user = user
423423
```
424424

425-
```objective-c
425+
```objc {tabTitle:Objective-C}
426426
SentryUser *user = [[SentryUser alloc] initWithUserId:@"1"];
427427
user.email = @"[email protected]";
428428
SentryClient.sharedClient.user = user;
@@ -436,7 +436,7 @@ u.email = "[email protected]"
436436
SentrySDK.setUser(u)
437437
```
438438

439-
```objective-c
439+
```objc {tabTitle:Objective-C}
440440
SentryUser *user = [[SentryUser alloc] initWithUserId:@"1"];
441441
user.email = @"[email protected]";
442442
[SentrySDK setUser:user];

src/platforms/common/profiling/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ Rust Profiling alpha is available starting in SDK version `0.29.0`.
300300

301301
In order to use Profiling, you first need to enable the `profiling` feature in the `sentry` dependency inside the project `Cargo.toml`:
302302

303-
```cargo
303+
```toml
304304
[dependencies]
305305
sentry = { version = "{{ packages.version('sentry.rust') }}", features = ["profiling"] }
306306
```

src/platforms/java/common/performance/instrumentation/jdbc.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For other dependency managers, check out the [central Maven repository](https://
4040

4141
Configure the `DataSource` to use `com.p6spy.engine.spy.P6SpyDriver` as a JDBC driver. For Spring Boot applications:
4242

43-
```properies {tabTitle: application.properties}
43+
```properties {tabTitle: application.properties}
4444
spring.datasource.driver-class-name=com.p6spy.engine.spy.P6SpyDriver
4545
```
4646

@@ -50,7 +50,7 @@ spring.datasource.driver-class-name: com.p6spy.engine.spy.P6SpyDriver
5050
5151
Add the `p6spy` prefix to the database connection URL. For Spring Boot applications:
5252

53-
```properies {tabTitle: application.properties}
53+
```properties {tabTitle: application.properties}
5454
spring.datasource.url: jdbc:p6spy:postgresql://localhost:5432/db
5555
```
5656

src/platforms/javascript/guides/gatsby/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: 'Learn how to use Sentry with Gatsby.'
88

99
To use Sentry with your Gatsby application, you will need to use `@sentry/gatsby` (Sentry’s Gatsby SDK):
1010

11-
```bash {tabTitle:NPM}
11+
```bash {tabTitle:npm}
1212
npm install --save @sentry/gatsby
1313
```
1414

src/platforms/javascript/guides/nextjs/manual-setup.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ If you can't (or prefer not to) run the [configuration step](/platforms/javascri
88

99
## Installation
1010

11-
```npm
11+
```bash {tabTitle:npm}
1212
npm install --save @sentry/nextjs
1313
```
1414

15-
```yarn
15+
```bash {tabTitle:Yarn}
1616
yarn add @sentry/nextjs
1717
```
1818

19-
```pnpm
19+
```bash {tabTitle:pnpm}
2020
pnpm add @sentry/nextjs
2121
```
2222

src/platforms/php/guides/symfony/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sentry:
4242

4343
And in your `.env` file:
4444

45-
```env {filename:.env}
45+
```plain {filename:.env}
4646
###> sentry/sentry-symfony ###
4747
SENTRY_DSN="___PUBLIC_DSN___"
4848
###< sentry/sentry-symfony ###

src/platforms/react-native/migration.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ React Native 0.69.0 and above:
6363

6464
_Old_:
6565

66-
```bash;
66+
```bash
6767
shellScript = "export SENTRY_PROPERTIES=sentry.properties\nexport EXTRA_PACKAGER_ARGS=\"--sourcemap-output $DERIVED_FILE_DIR/main.jsbundle.map\"\nset -e\n\nWITH_ENVIRONMENT=\"../node_modules/react-native/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"../node_modules/react-native/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT \\\"../node_modules/@sentry/cli/bin/sentry-cli react-native xcode $REACT_NATIVE_XCODE\\\"\"\n";
6868
```
6969

src/wizard/php/symfony.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sentry:
4040

4141
And in your `.env` file:
4242

43-
```env {filename:.env}
43+
```plain {filename:.env}
4444
###> sentry/sentry-symfony ###
4545
SENTRY_DSN="___PUBLIC_DSN___"
4646
###< sentry/sentry-symfony ###

0 commit comments

Comments
 (0)