Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR is related to #61
This PR:
$internal_format['speakers']
and if there is any speaker, attaches<v {speaker_name}>
to the beginning and</v>
to the end of the line.$internal_format['speakers']
and if there is any speaker, attaches{speaker_name}:
to the beginning of the line.add()
a subtitle, you can pass the speaker as keys of third param.->add(0, 1, ['{speaker_name}' => 'Line 1', 'Line 2'])
->add(1, 2, ['Line 1', '{speaker_name}' =>'Line2'])
->add(2, 3, ['{speaker_name}' => 'Line 1', '{speaker_name}' =>'Line2'])
->add(3, 4, ['Line 1', 'speaker2: Line2']) // If the speaker is not available -Line1- or it is already included in the line -Line2-, you should not pass speaker separately.