Skip to content

Commit

Permalink
Improve parsing algorithm to handle spaces and comments #63
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Oct 15, 2021
1 parent c3e4c7e commit 7db9026
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand All @@ -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`).
Expand Down

0 comments on commit 7db9026

Please sign in to comment.