Skip to content

Commit 5eabd30

Browse files
committed
language_elements.md: lint with mdl
Linting with markdownlint (version 0.13.0) as packaged by Debian Linux[1] except for any kind of links, tables and checks on snippets of Fortran. [1] https://tracker.debian.org/pkg/ruby-mdl Signed-off-by: Norwid Behrnd <[email protected]>
1 parent caeb853 commit 5eabd30

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

source/learn/f95_features/language_elements.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ title="Operations on external files">Operations on external files</a>).
1515
The basic component of the Fortran language is its *character set*. Its
1616
members are
1717

18-
- the letters A ... Z and a ... z (which are equivalent outside a
19-
character context)
20-
- the numerals 0 ... 9
21-
- the underscore \_
22-
- the special characters
23-
`= : + blank - * / ( ) [ ] , . $ ' ! " % & ; < > ?`
18+
- the letters A ... Z and a ... z (which are equivalent outside a
19+
character context)
20+
- the numerals 0 ... 9
21+
- the underscore \_
22+
- the special characters
23+
`= : + blank - * / ( ) [ ] , . $ ' ! " % & ; < > ?`
2424

2525
<a href="Token_(parser)" class="wikilink" title="Token">Tokens</a> that
2626
have a syntactic meaning to the compiler are built from those
@@ -279,7 +279,7 @@ There are some other interesting character features. Just as a substring
279279
as in
280280

281281
```f90
282-
CHARACTER(80) :: line
282+
CHARACTER(80) :: line
283283
... = line(i:i) ! substring
284284
```
285285

@@ -454,17 +454,17 @@ TYPE(triplet), DIMENSION(4) :: t
454454

455455
so that
456456

457-
- ```f90
458-
t(2)
459-
```
457+
```f90
458+
t(2)
459+
```
460460

461-
is a scalar (a structure)
461+
is a scalar (a structure)
462462

463-
- ```f90
464-
t(2)%vertex
465-
```
463+
```f90
464+
t(2)%vertex
465+
```
466466

467-
is an array component of a scalar
467+
is an array component of a scalar
468468

469469
## Data initialization
470470

@@ -557,4 +557,3 @@ SUBROUTINE s(b, m, c)
557557
CHARACTER(LEN= m + LEN(c)) :: cc
558558
REAL (SELECTED_REAL_KIND(2*PRECISION(a))) :: z
559559
```
560-

0 commit comments

Comments
 (0)