diff --git a/src/parser/mod.rs b/src/parser/mod.rs index 0993dadf..b6987a97 100644 --- a/src/parser/mod.rs +++ b/src/parser/mod.rs @@ -755,9 +755,14 @@ pub struct RenderOptions { /// ``` pub list_style: ListStyleType, - /// Include source position attributes in XML output. + /// Include source position attributes in HTML and XML output. /// - /// Not yet compatible with extension.description_lists. + /// Sourcepos information is reliable for all core block items, and most + /// extensions. The description lists extension still has issues; see + /// . + /// + /// Sourcepos information is **not** reliable for inlines. See + /// for a discussion. /// /// ```rust /// # use comrak::{markdown_to_commonmark_xml, Options};