slint-ui / document-features

Extract documentation for the feature flags from comments in Cargo.toml
Apache License 2.0
171 stars 11 forks source link

error: unclosed HTML tag `unknown` #23

Closed StackOverflowExcept1on closed 8 months ago

StackOverflowExcept1on commented 8 months ago
#! ## Panic handler profiles

## When enabled, a minimal panic handler is provided by this crate.
## Instead of a panic message, "<unknown>" is displayed.
panic-handler = ["const_format"]

For some reason I can't write <tag> in doc comment.

ogoffart commented 8 months ago

That's a rustdoc thing. You need to escape it. eg: `<unknown>` or \<unknown>