Skip to content

Commit 4bce76e

Browse files
committed
Add missing "See also" sections
When the "See also" section is missing, the automatically generated links to the other pages within the same subsection are added to a section titled "undefined".
1 parent b0791f1 commit 4bce76e

File tree

29 files changed

+329
-10
lines changed

29 files changed

+329
-10
lines changed

Language/Functions/Advanced IO/noTone.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,14 @@ If you want to play different pitches on multiple pins, you need to call noTone(
5050

5151
--
5252
// HOW TO USE SECTION ENDS
53+
54+
55+
// SEE ALSO SECTION
56+
[#see_also]
57+
--
58+
59+
[float]
60+
=== See also
61+
62+
--
63+
// SEE ALSO SECTION ENDS

Language/Functions/Advanced IO/pulseIn.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,14 @@ void loop()
7474

7575
--
7676
// HOW TO USE SECTION ENDS
77+
78+
79+
// SEE ALSO SECTION
80+
[#see_also]
81+
--
82+
83+
[float]
84+
=== See also
85+
86+
--
87+
// SEE ALSO SECTION ENDS

Language/Functions/Advanced IO/pulseInLong.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,14 @@ This function relies on micros() so cannot be used in link:../../interrupts/noin
7878

7979
--
8080
// HOW TO USE SECTION ENDS
81+
82+
83+
// SEE ALSO SECTION
84+
[#see_also]
85+
--
86+
87+
[float]
88+
=== See also
89+
90+
--
91+
// SEE ALSO SECTION ENDS

Language/Functions/Advanced IO/shiftIn.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,15 @@ Note: this is a software implementation; Arduino also provides an link:https://w
4444
the value read (byte)
4545

4646
--
47-
// OVERVIEW SECTION ENDS
47+
// OVERVIEW SECTION ENDS
48+
49+
50+
// SEE ALSO SECTION
51+
[#see_also]
52+
--
53+
54+
[float]
55+
=== See also
56+
57+
--
58+
// SEE ALSO SECTION ENDS

Language/Functions/Advanced IO/shiftOut.adoc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,14 @@ shiftOut(dataPin, clock, LSBFIRST, (data >> 8));
121121

122122
--
123123
// HOW TO USE SECTION ENDS
124+
125+
126+
// SEE ALSO SECTION
127+
[#see_also]
128+
--
129+
130+
[float]
131+
=== See also
132+
133+
--
134+
// SEE ALSO SECTION ENDS

Language/Functions/Bits and Bytes/bit.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,15 @@ Computes the value of the specified bit (bit 0 is 1, bit 1 is 2, bit 2 is 4, etc
3535
The value of the bit.
3636

3737
--
38-
// OVERVIEW SECTION ENDS
38+
// OVERVIEW SECTION ENDS
39+
40+
41+
// SEE ALSO SECTION
42+
[#see_also]
43+
--
44+
45+
[float]
46+
=== See also
47+
48+
--
49+
// SEE ALSO SECTION ENDS

Language/Functions/Bits and Bytes/bitClear.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,15 @@ Clears (writes a 0 to) a bit of a numeric variable.
3737
Nothing
3838

3939
--
40-
// OVERVIEW SECTION ENDS
40+
// OVERVIEW SECTION ENDS
41+
42+
43+
// SEE ALSO SECTION
44+
[#see_also]
45+
--
46+
47+
[float]
48+
=== See also
49+
50+
--
51+
// SEE ALSO SECTION ENDS

Language/Functions/Bits and Bytes/bitRead.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,15 @@ Reads a bit of a number.
3838
the value of the bit (0 or 1).
3939

4040
--
41-
// OVERVIEW SECTION ENDS
41+
// OVERVIEW SECTION ENDS
42+
43+
44+
// SEE ALSO SECTION
45+
[#see_also]
46+
--
47+
48+
[float]
49+
=== See also
50+
51+
--
52+
// SEE ALSO SECTION ENDS

Language/Functions/Bits and Bytes/bitSet.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,15 @@ Sets (writes a 1 to) a bit of a numeric variable.
3737
Nothing
3838

3939
--
40-
// OVERVIEW SECTION ENDS
40+
// OVERVIEW SECTION ENDS
41+
42+
43+
// SEE ALSO SECTION
44+
[#see_also]
45+
--
46+
47+
[float]
48+
=== See also
49+
50+
--
51+
// SEE ALSO SECTION ENDS

Language/Functions/Bits and Bytes/bitWrite.adoc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,15 @@ Writes a bit of a numeric variable.
3939
Nothing
4040

4141
--
42-
// OVERVIEW SECTION ENDS
42+
// OVERVIEW SECTION ENDS
43+
44+
45+
// SEE ALSO SECTION
46+
[#see_also]
47+
--
48+
49+
[float]
50+
=== See also
51+
52+
--
53+
// SEE ALSO SECTION ENDS

0 commit comments

Comments
 (0)