noteflakes / lydown

A language for music notation
http://ciconia.github.io/lydown
MIT License
24 stars 0 forks source link

Inline overrides #13

Closed noteflakes closed 8 years ago

noteflakes commented 9 years ago

Lilypond syntax:

\override Stem.thickness = #5.0
\once \override Stem.thickness = #5.0

Lydown current command syntax:

\override:"Stem.thickness = #5.0"

New lydown override syntax:

\\Stem.thickness:5.0

Override once:

\\!Stem.thickness:5.0

Support for true/false literals (##t / ##f), strings (#"..."), numbers (#5 / #5.0) etc.