diff --git a/harper-quarto/src/lib.rs b/harper-quarto/src/lib.rs index cde79a06..8a174956 100644 --- a/harper-quarto/src/lib.rs +++ b/harper-quarto/src/lib.rs @@ -6,7 +6,9 @@ use harper_core::{ mod masker; pub use masker::QuartoMasker; -/// Parses a Literate Haskell document by masking out the code and considering text as Markdown. +/// Parses a quarto document by ignoring the YAML header, and treating the remainder as Markdown. +/// +/// TODO: Parse [quarto specific syntax elements](https://quarto.org/docs/authoring/markdown-basics.html) pub struct QuartoParser { inner: Lrc, }