Skip to content

Commit

Permalink
option: render description as markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Oct 16, 2024
1 parent 8aac3fa commit 6f066dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ixx/src/action/index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ fn into_option(
.map(|declaration| update_declaration(url_prefix, declaration))
.collect::<anyhow::Result<_>>()?,
default: option.default.map(|option| option.render()),
description: option.description,
description: markdown::to_html(&option.description),
example: option.example.map(|example| example.render()),
read_only: option.read_only,
r#type: option.r#type,
Expand Down

0 comments on commit 6f066dd

Please sign in to comment.