messageformat / parser

A PEG.js parser for ICU MessageFormat strings
https://messageformat.github.io/
MIT License
7 stars 5 forks source link

Improve function param parsing #4

Closed nkovacs closed 7 years ago

nkovacs commented 7 years ago

Parameters to functions may contain whitespace and quoted special characters, but they are still trimmed and split into multiple parameters. A new option, strictFunctionParams, activates ICU-compatible parsing, which parses everything from the second comma to the closing curly brace as a single "argStyleText" parameter.

Fixes #1