From 26ab0b400840fe5f0faf10105f0327f33cfe00d9 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sun, 30 Oct 2016 19:16:33 -0700 Subject: [PATCH] Fix grammar.md headings --- grammar.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/grammar.md b/grammar.md index 15b2e3d..1399168 100644 --- a/grammar.md +++ b/grammar.md @@ -1,5 +1,5 @@ justfile grammar ----------------- +================ The justfiles are processed with a mildly context-sensitive tokenizer and a recursive descent parser. The grammar is mostly LL(1), @@ -7,7 +7,7 @@ altough an extra token of lookahead is used to distinguish between export assignments and recipes with arguments. tokens -====== +------ ``` BACKTICK = `[^`\n\r]*` @@ -28,7 +28,7 @@ TEXT = recipe text, only matches in a recipe body ``` grammar -======= +------- ``` justfile : item* EOF