Add test case for invalid src block.

This commit is contained in:
Tom Alexander 2023-04-21 18:13:23 -04:00
parent cdcaae11c4
commit 6fce666983
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1,3 @@
#+begin_src
echo "this is a source block."
#+end_src

View File

@ -212,7 +212,7 @@ pub fn export_block<'r, 's>(
#[tracing::instrument(ret, level = "debug")]
pub fn src_block<'r, 's>(context: Context<'r, 's>, input: &'s str) -> Res<&'s str, SrcBlock<'s>> {
let (remaining, name) = lesser_block_begin("src")(context, input)?;
// TODO: DATA is mandatory and must follow the LANGUAGE SWITCHES ARGUMENTS pattern
// https://orgmode.org/worg/org-syntax.html#Blocks claims that data is mandatory and must follow the LANGUAGE SWITCHES ARGUMENTS pattern but testing has shown that no data and incorrect data here will still parse to a src block.
let (remaining, parameters) = opt(tuple((space1, data)))(remaining)?;
let (remaining, _nl) = line_ending(remaining)?;
let lesser_block_end_specialized = lesser_block_end("src");