A simple module to create "infinite" transcripts or dialogues.
Usage[]
| Code | Output |
|---|---|
| {{#invoke:transcript|main|Luke|All right, I'll give it a try|Yoda|No. Try not. Do... or do not. There is no 'try.'}} |
|
| Code | Output |
|---|---|
| {{#invoke:transcript|main|Luke:I can't believe it!|Yoda: That is why you failed.|#separator=:}} |
|
Sample CSS[]
/*http://codepen.io/agasthyanavaneeth/pen/nvgCz.css*/
dl.transcript_dialogue dd {
display: inline;
}
dl.transcript_dialogue dd:after {
content: '';
display: block;
}
dl.transcript_dialogue dt {
display: inline-block;
min-width: 100px;
}
dt.transcript_author {
text-align: right;
}
dt.transcript_quote {
color: blue;
}