Skip to content

Commit a365d66

Browse files
committed
Allow markdown in issue description
1 parent 7cd9058 commit a365d66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/src/pages/reference/[func].astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ const oopList = Array.isArray(funcInfo.oop) ? funcInfo.oop : funcInfo.oop ? [fun
320320
{funcInfo.issues.map(issue => (
321321
<tr>
322322
<td><a href={`https://github.com/multitheftauto/mtasa-blue/issues/${issue.id}`}>{issue.id}</a></td>
323-
<td>{issue.description}</td>
323+
<td><EnhancedMarkdown content={issue.description}/></td>
324324
</tr>
325325
))}
326326
</tbody>

0 commit comments

Comments
 (0)