> Maybe we can find a way to incorporate some sort of "section" > to use when grouping items, methods, fields, etc. I imagine > we could draw on Markdown's `#`, `##`, `###` notation to > define sections, subsections, and so forth, but I'm just > not sure how we would let rustdoc know about it, since there > is nothing in particular to attach the attribute to. > > Any thoughts? Is this something other people would like?
Why not just do it with an annotation and support arbitrary tags? Like: #[doc(section="Node construction")] Or something like that. Then the doc generator can do whatever it likes with the tags, allowing all kinds of nice extensions later. jack. _______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
