From 7db9026f7acb2b8641a52626101ad3b6b23316ac Mon Sep 17 00:00:00 2001 From: xonix Date: Fri, 15 Oct 2021 13:47:53 +0300 Subject: [PATCH] Improve parsing algorithm to handle spaces and comments #63 --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bed96a7..5a734c7 100644 --- a/README.md +++ b/README.md @@ -490,7 +490,7 @@ Only single `@use_lib` per goal is allowed. ### Naming rules -It's *recommended* that you name your goals using alpha-numeric chars + underscore. +It's *recommended* that you name your goals using alphanumeric chars + underscore. However, it's possible to name a goal any way you want provided that you apply proper escaping: @@ -510,7 +510,10 @@ Available goals: usual_name ``` -Note, how goal names are already escaped in output. This is to make it easier for to call it directly `./makesure $'name that contains \' single quote'`. +Note, how goal names are already escaped in output. This is to make it easier for you to call it directly +``` +./makesure $'name that contains \' single quote' +```. Same naming rules apply to other directives (like `@doc`).