-
Notifications
You must be signed in to change notification settings - Fork 22
adoc: tables for symbols have headers #1027
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -31,10 +31,10 @@ | |||||||
{{! Base classes }} | ||||||||
{{#if (any_of_by symbol.bases "isPublic")}} | ||||||||
{{#> markup/dynamic-level-h }}Base Classes{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure that's necessary when you define "cols", but that's also fine. |
||||||||
|
||||||||
{{#each (filter_by symbol.bases "isPublic")}} | ||||||||
| {{#>markup/code}}{{> type/declarator type }}{{/markup/code}} | ||||||||
| {{> javadoc/inline-brief symbol.doc.brief }} | ||||||||
|
@@ -45,10 +45,10 @@ | |||||||
{{! Protected Base classes }} | ||||||||
{{#if (any_of_by symbol.bases "isProtected")}} | ||||||||
{{#> markup/dynamic-level-h }}Protected Base Classes{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each (filter_by symbol.bases "isProtected")}} | ||||||||
| {{#>markup/code}}{{> type/declarator type }}{{/markup/code}} | ||||||||
| {{> javadoc/inline-brief symbol.doc.brief }} | ||||||||
|
@@ -72,10 +72,10 @@ | |||||||
{{#if symbol.constants}} | ||||||||
{{#> markup/dynamic-level-h }}Members{{/markup/dynamic-level-h}} | ||||||||
|
||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each (filter_by symbol.constants "isRegular" "isSeeBelow")}} | ||||||||
|`{{>symbol/name-text .}}` | ||||||||
|{{> javadoc/inline-brief doc.brief }} | ||||||||
|
@@ -87,10 +87,10 @@ | |||||||
{{! Friends }} | ||||||||
{{#if symbol.friends}} | ||||||||
{{#> markup/dynamic-level-h }}Friends{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each symbol.friends }} | ||||||||
{{#if symbol}} | ||||||||
| {{#>markup/code}}{{> symbol/qualified-name symbol }}{{/markup/code}} | ||||||||
|
@@ -111,7 +111,7 @@ | |||||||
{{! Related symbols }} | ||||||||
{{#if symbol.doc.related}} | ||||||||
{{#> markup/dynamic-level-h }}Non-Member Functions{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
Comment on lines
116
to
117
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These table headers should be updated to match the consistent format used elsewhere in the file. Replace the separate header rows with the single-line format
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||
|
@@ -125,10 +125,10 @@ | |||||||
{{! Derived classes }} | ||||||||
{{#if symbol.derived}} | ||||||||
{{#> markup/dynamic-level-h }}Derived Classes{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each symbol.derived}} | ||||||||
| {{#if url~}} | ||||||||
{{#>markup/a href=url}}{{#>markup/code}}{{> type/name-info-text . }}{{/markup/code}}{{/markup/a}} | ||||||||
|
@@ -151,10 +151,10 @@ | |||||||
{{#if symbol.shadows}} | ||||||||
{{#> markup/dynamic-level-h }}Introduced Symbols{{/markup/dynamic-level-h}} | ||||||||
{{#if (any_of_by symbol.shadows "doc")}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each symbol.shadows}} | ||||||||
| {{> symbol/qualified-name . }} | ||||||||
| {{> javadoc/inline-brief doc.brief }} | ||||||||
|
@@ -173,7 +173,7 @@ | |||||||
{{! Exceptions }} | ||||||||
{{#if symbol.doc.exceptions}} | ||||||||
{{#> markup/dynamic-level-h }}Exceptions{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Thrown on | ||||||||
Comment on lines
178
to
179
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These table headers should be updated to match the consistent format used elsewhere in the file. Replace the separate header rows with the single-line format
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||||
|
@@ -201,10 +201,10 @@ | |||||||
{{! Template Parameters }} | ||||||||
{{#if symbol.doc.tparams}} | ||||||||
{{#> markup/dynamic-level-h }}Template Parameters{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each symbol.doc.tparams}} | ||||||||
| *{{name}}* | ||||||||
| {{>javadoc/block .}} | ||||||||
|
@@ -215,10 +215,10 @@ | |||||||
{{! Parameters }} | ||||||||
{{#if symbol.doc.params}} | ||||||||
{{#> markup/dynamic-level-h }}Parameters{{/markup/dynamic-level-h}} | ||||||||
[cols=2] | ||||||||
[cols="1,4"] | ||||||||
|=== | ||||||||
| Name | ||||||||
| Description | ||||||||
|Name|Description | ||||||||
|
||||||||
{{#each symbol.doc.params}} | ||||||||
| *{{name}}*{{#if direction}} [{{direction}}]{{/if}} | ||||||||
| {{>javadoc/block .}} | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh... That's good.