//! This contains logic for parsing LilyPond
use lazy_static;
use Regex;
/// Gets content between curly brackets
///
/// ## Usage:
///
/// ```
/// use lilypond::parser::curly_brackets;
///
/// let c1 = curly_brackets("{ c e g }");
///
/// assert_eq!(c1, Some(" c e g "));
/// ```