Skip to content

Commit c92f414

Browse files
committed
Fix link generation and code block issues with FORD
1 parent 591678d commit c92f414

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

doc/specs/stdlib_ascii.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ Converts input character variable to all lowercase.
3434

3535
#### Syntax
3636

37-
```f90
38-
res = [stdlib_asciii(module):to_lower(function)]](string)
39-
```
37+
`res = [[stdlib_asciii(module):to_lower(function)]] (string)`
4038

4139
#### Class
4240

@@ -72,9 +70,7 @@ Converts input character variable to all uppercase.
7270

7371
#### Syntax
7472

75-
```fortran
76-
res = [[stdlib_ascii(module):to_upper(function)]](string)
77-
```
73+
`res = [[stdlib_ascii(module):to_upper(function)]] (string)`
7874

7975
#### Class
8076

@@ -112,9 +108,7 @@ All following characters will become lowercase.
112108

113109
#### Syntax
114110

115-
```
116-
res = [[stdlib_ascii(module):to_title(interface)]](string)
117-
```
111+
`res = [[stdlib_ascii(module):to_title(interface)]] (string)`
118112

119113
#### Class
120114

@@ -152,9 +146,7 @@ Reverses the order of all characters in the input character type.
152146

153147
#### Syntax
154148

155-
```f90
156-
res = [[stdlib_ascii(module):reverse(function)]](string)
157-
```
149+
`res = [[stdlib_ascii(module):reverse(function)]] (string)`
158150

159151
#### Class
160152

@@ -176,3 +168,4 @@ program demo_reverse
176168
implicit none
177169
print'(a)', reverse("Hello, World!") ! returns "!dlroW ,olleH"
178170
end program demo_reverse
171+
```

0 commit comments

Comments
 (0)