So I have a drop down menu I'm trying to add to a character sheet to prompt multiple related outputs. Here is the drop down in question:
<span>
<select title="@{RaceChoice}" name="attr_RaceChoice">
<option value="@{HumanDetails}" selected>Human</option>
<option value="@{ElfDetails}">Elf</option>
</select>
</span>
Ideally I am trying to have @{HumanDetails} be able to trigger multiple lines:
Thoughts?
<span>
<select title="@{RaceChoice}" name="attr_RaceChoice">
<option value="@{HumanDetails}" selected>Human</option>
<option value="@{ElfDetails}">Elf</option>
</select>
</span>
Ideally I am trying to have @{HumanDetails} be able to trigger multiple lines:
- @{HumanDetailsInfo}
- @{HumanDetailsStat}
- @{HumanDetailsAbility}
Thoughts?