Skip to content

Commit c7c6cb0

Browse files
seanbrightjcolp
authored andcommitted
docs: Remove trailing blank line from all code blocks
1 parent 9f664ca commit c7c6cb0

268 files changed

Lines changed: 0 additions & 1545 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/Asterisk-Community/IRC.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,16 @@ Use <https://libera.chat/> IRC server to connect with Asterisk developers and us
1212

1313
```bash title=" " linenums="1"
1414
#asterisk
15-
1615
```
1716

1817
### Asterisk Developers Room
1918

2019
```bash title=" " linenums="1"
2120
#asterisk-dev
22-
2321
```
2422

2523
### Asterisk ARI/Application Developers Room
2624

2725
```bash title=" " linenums="1"
2826
#asterisk-ari
29-
3027
```

docs/Configuration/Applications/Answer-Playback-and-Hangup-Applications.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,19 @@ To avoid the first few milliseconds of a prompt from being cut off you can play
1717

1818
```conf title=" " linenums="1"
1919
exten => 1234,1,Playback(hello-world)
20-
2120
```
2221

2322
You could avoid the first few seconds of the prompt from being cut off by playing the silence/1 file:
2423

2524
```conf title=" " linenums="1"
2625
exten => 1234,1,Playback(silence/1)
2726
exten => 1234,n,Playback(hello-world)
28-
2927
```
3028

3129
Alternatively this could all be done on the same line by separating the filenames with an ampersand (&):
3230

3331
```conf title=" " linenums="1"
3432
exten => 1234,1,Playback(silence/1&hello-world)
35-
3633
```
3734

3835
The **Hangup()** application hangs up the current call. While not strictly necessary due to auto-fallthrough (see the note on Priority numbers above), in general we recommend you add the **Hangup()** application as the last priority in any extension.
@@ -43,5 +40,4 @@ Now let's put **Answer()**, **Playback()**, and **Hangup()** together to play a
4340
exten => 6000,1,Answer(500)
4441
exten => 6000,n,Playback(hello-world)
4542
exten => 6000,n,Hangup()
46-
4743
```

0 commit comments

Comments
 (0)