Skip to content

Commit

Permalink
docs: add note about parser options
Browse files Browse the repository at this point in the history
  • Loading branch information
nebrelbug committed May 6, 2023
1 parent 4b04ac4 commit 023ef4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno_dist/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface EtaConfig {
/** XML-escaping function */
e: (str: string) => string;

/** Parsing options */
/** Parsing options. NOTE: "-" and "_" may not be used, since they are reserved for whitespace trimming. */
parse: {
/** Which prefix to use for evaluation. Default `""` */
exec: string;
Expand Down
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface EtaConfig {
/** XML-escaping function */
e: (str: string) => string;

/** Parsing options */
/** Parsing options. NOTE: "-" and "_" may not be used, since they are reserved for whitespace trimming. */
parse: {
/** Which prefix to use for evaluation. Default `""` */
exec: string;
Expand Down

0 comments on commit 023ef4b

Please sign in to comment.