File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Sources/swift-doc/Supporting Types/Components Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
43
43
- Fixed regression that caused nodes in relationships graph
44
44
to not have links to their corresponding symbol documentation.
45
45
#153 by @mattt .
46
+ - Fixed markup for parameter descriptions in HTML output.
47
+ #156 by @mattt .
46
48
47
49
## [ 1.0.0-beta.3] - 2020-05-19
48
50
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ struct Documentation: Component {
119
119
type = nil
120
120
}
121
121
122
- return ( entry. name, type, entry. description )
122
+ return ( entry. name, type, entry. content )
123
123
}
124
124
125
125
fragments. append ( #"""
@@ -145,7 +145,7 @@ struct Documentation: Component {
145
145
return #"""
146
146
<tr>
147
147
<th> \#( softbreak ( entry. name) ) </th>
148
- \#( typeCell) </td>
148
+ \#( typeCell)
149
149
<td> \#( commonmark: entry. description) </td>
150
150
</tr>
151
151
"""# as HypertextLiteral . HTML
You can’t perform that action at this time.
0 commit comments