From 5507fb347e834d1c3a93cc26b130908dff9983e4 Mon Sep 17 00:00:00 2001 From: Grant Lemons Date: Tue, 25 Feb 2025 12:46:45 -0700 Subject: [PATCH] update doc comment to be relevant for quarto --- harper-quarto/src/lib.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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, }