Skip to content

Commit 51c0d1d

Browse files
committed
update headers
1 parent af3c6af commit 51c0d1d

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

v3/examples/badge-custom/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ app := application.New(application.Options{
3737

3838
Set a badge on the application tile/dock icon:
3939

40-
**Go**
40+
#### Go
4141
```go
4242
// Set a default badge
4343
badgeService.SetBadge("")
@@ -49,7 +49,7 @@ badgeService.SetBadge("3")
4949
badgeService.SetBadge("New")
5050
```
5151

52-
**JS**
52+
#### JS
5353
```js
5454
import {SetBadge} from "../bindings/github.com/wailsapp/wails/v3/pkg/services/badge/service";
5555

@@ -67,12 +67,12 @@ SetBadge("New")
6767

6868
Remove the badge from the application icon:
6969

70-
**Go**
70+
#### Go
7171
```go
7272
badgeService.RemoveBadge()
7373
```
7474

75-
**JS**
75+
#### JS
7676
```js
7777
import {RemoveBadge} from "../bindings/github.com/wailsapp/wails/v3/pkg/services/badge/service";
7878

v3/examples/badge/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ app := application.New(application.Options{
2828

2929
Set a badge on the application tile/dock icon:
3030

31-
**Go**
31+
#### Go
3232
```go
3333
// Set a default badge
3434
badgeService.SetBadge("")
@@ -40,7 +40,7 @@ badgeService.SetBadge("3")
4040
badgeService.SetBadge("New")
4141
```
4242

43-
**JS**
43+
#### JS
4444
```js
4545
import {SetBadge} from "../bindings/github.com/wailsapp/wails/v3/pkg/services/badge/service";
4646

@@ -58,12 +58,12 @@ SetBadge("New")
5858

5959
Remove the badge from the application icon:
6060

61-
**Go**
61+
#### Go
6262
```go
6363
badgeService.RemoveBadge()
6464
```
6565

66-
**JS**
66+
#### JS
6767
```js
6868
import {RemoveBadge} from "../bindings/github.com/wailsapp/wails/v3/pkg/services/badge/service";
6969

0 commit comments

Comments
 (0)