Skip to content

Commit

Permalink
fix: should use markdown to render link in rsshub parameter desc (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudoyu authored Sep 19, 2024
1 parent d35e011 commit 2f64787
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/renderer/src/modules/discover/DiscoverFeedForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ export const DiscoverFeedForm = ({
/>
)}
{!!parameters && (
<p className="text-xs text-theme-foreground/50">{parameters.description}</p>
<Markdown className="text-xs text-theme-foreground/50">
{parameters.description}
</Markdown>
)}
</FormItem>
)
Expand Down

0 comments on commit 2f64787

Please sign in to comment.