From 6f066ddd99e6858bae824d06fff8d1b895e3428b Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 15 Oct 2024 13:33:52 +0200 Subject: [PATCH] option: render description as markdown --- ixx/src/action/index.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ixx/src/action/index.rs b/ixx/src/action/index.rs index c77a262..444a069 100644 --- a/ixx/src/action/index.rs +++ b/ixx/src/action/index.rs @@ -106,7 +106,7 @@ fn into_option( .map(|declaration| update_declaration(url_prefix, declaration)) .collect::>()?, 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,