Skip to content

Commit 9576c73

Browse files
committed
chore: add 'See Also' section to all adoc templates
1 parent d68d133 commit 9576c73

10 files changed

+99
-1
lines changed

share/mrdocs/addons/generator/asciidoc/partials/symbols/alias.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/enum.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,13 @@
2828
2929
{{symbol.doc.description}}
3030
{{/if}}
31+
32+
{{#if symbol.doc.see}}
33+
== See Also
34+
35+
{{#each symbol.doc.see}}
36+
{{.}}
37+
38+
{{/each}}
39+
40+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/enumerator.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,13 @@
1919
{{symbol.doc.description}}
2020
2121
{{/if}}
22+
23+
{{#if symbol.doc.see}}
24+
== See Also
25+
26+
{{#each symbol.doc.see}}
27+
{{.}}
28+
29+
{{/each}}
30+
31+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/field.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/friend.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/function.adoc.hbs

+9-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,12 @@
5454
5555
{{/if}}
5656
57-
{{! TODO: == See Also }}
57+
{{#if symbol.doc.see}}
58+
== See Also
59+
60+
{{#each symbol.doc.see}}
61+
{{.}}
62+
63+
{{/each}}
64+
65+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/guide.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/typedef.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/using.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,13 @@
3030
|===
3131
3232
{{/if}}
33+
34+
{{#if symbol.doc.see}}
35+
== See Also
36+
37+
{{#each symbol.doc.see}}
38+
{{.}}
39+
40+
{{/each}}
41+
42+
{{/if}}

share/mrdocs/addons/generator/asciidoc/partials/symbols/variable.adoc.hbs

+10
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,13 @@
1818
{{symbol.doc.description}}
1919
2020
{{/if}}
21+
22+
{{#if symbol.doc.see}}
23+
== See Also
24+
25+
{{#each symbol.doc.see}}
26+
{{.}}
27+
28+
{{/each}}
29+
30+
{{/if}}

0 commit comments

Comments
 (0)