@@ -133,7 +133,7 @@ pub async fn updates(
133
133
let ( completed, total) = progress. completed_total ( ) ;
134
134
let status_badge = match issue. state {
135
135
ExistingIssueState :: Open => {
136
- format!( "<progress value=" { completed} " max=" { total} " )
136
+ format ! ( "<progress value=' {completed}' max=' {total}'></progress>" , )
137
137
}
138
138
ExistingIssueState :: Closed if completed == total => {
139
139
format ! ( "" )
@@ -150,13 +150,18 @@ pub async fn updates(
150
150
151
151
writeln ! ( output, "<tr>" ) ?;
152
152
writeln ! ( output, "<th>" ) ?;
153
- writeln!( output, "[#{number}]({url}" , number = issue. number, url = issue_id. url( ) ) ?;
153
+ writeln ! (
154
+ output,
155
+ "[#{number}]({url}" ,
156
+ number = issue. number,
157
+ url = issue_id. url( )
158
+ ) ?;
154
159
writeln ! ( output, "</th>" ) ?;
155
160
writeln ! ( output, "<th>" ) ?;
156
- writeln!( output, "{title}" ) ;
161
+ writeln ! ( output, "{title}" ) ? ;
157
162
writeln ! ( output, "</th>" ) ?;
158
163
writeln ! ( output, "<th>" ) ?;
159
- writeln!( output, "{status_badge}" ) ;
164
+ writeln ! ( output, "{status_badge}" ) ? ;
160
165
writeln ! ( output, "</th>" ) ?;
161
166
writeln ! ( output, "</tr>" ) ?;
162
167
writeln ! ( output, "<tr>" ) ?;
0 commit comments