I tried this code: ```rust /// ```rust /// ##![no_std] /// ``` pub struct A; ``` with `cargo doc` I expected to see this happen: Either an error or `#![no_std]` gets hidden What actually happend: The first `#` gets ignored. 