Extract the description from a pre-parsed [`DocblockInfo`], applying HTML-to-Markdown conversion.
(info: &DocblockInfo)
| 502 | /// Extract the description from a pre-parsed [`DocblockInfo`], applying |
| 503 | /// HTML-to-Markdown conversion. |
| 504 | pub(crate) fn extract_description_from_info(info: &DocblockInfo) -> Option<String> { |
| 505 | info.description.as_deref().map(html_to_markdown) |
| 506 | } |
| 507 | |
| 508 | /// Extract the human-readable description text from a raw docblock string. |
| 509 | /// |
no test coverage detected