Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify end-of-phrase and File End #70

Merged
merged 1 commit into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Everything after a trailing `E` MUST be ignored.
```abnf
song = file-header
file-body
[ %x45 *char ] ; E
[ %x45 end-of-line *char ] ; E
char = %x00-10FFFF
```

Expand Down Expand Up @@ -888,9 +888,8 @@ This is usually interpreted as a line break in the lyrics.
An end-of-phrase SHOULD NOT appear between the start beat (inclusive) of a note and its end beat (exclusive).
An end-of-phrase marker SHOULD NOT appear before the start time of the first note or after the start time of the last note.

> [!CAUTION]
>
> Whether leading or trailing end-of-phrase markers are allowed is currently up for discussion ([#44](https://github.com/UltraStar-Deluxe/format/issues/44)).
An end-of-phrase marker MUST NOT immediately follow another end-of-phrase marker.
In the interests of interoperability implementations MAY ignore subsequent end-of-phrase markers.

> [!CAUTION]
>
Expand Down