 
I've been looking at the  d6starwars 's character sheet with the intention of improving it as it lacks in many ways, but have stumbled on a problem with the repeated sections. It seems to me identical to  #Repeating_Sections  in sheet creation, but the attributes are not created. I didn't find any relevant post to this, only a  old one  before this was implemented.   This post  further mentions it being possible and even how the naming convention work.   <td class="sheet-tdborder">
                    <div class="sheet-bold">/*Perception attribute*/
                        <button type='roll' class="astext" value='/roll (@{perception} - 1)d6 + 1d6! + @{perceptionpip}' >Perception</button>
                        <div style="float:right;">
                            <input type="number" name="attr_perception" class="sheet-smallnumber"  min="1" value="3"/>D 
                            +<input type="number" name="attr_perceptionpip" class="sheet-smallnumber" min="0" max="2" value="0"/>
                        </div>
                    </div>
                     <fieldset class="repeating_percskills">  /*Perception Skills*/
                        <button  type="roll" value="/r (@{percskilldice} - 1)d6 + 1d6! + @{percskillpip}"></button>
                           <input class="sheet-skilltext" type="text" name="attr_percskillname"/>  
                          <div class="sheet-right">
                           <input type="number" name="attr_percskilldice" class="sheet-smallnumber sheet-shortnumber" min="1" value="@{percskilldice}"/>D 
                          +<input type="number" name="attr_percskillpip" class="sheet-smallnumber sheet-shortnumber" min="0" max="2" value="@{percskillpip}"/> 
                          </div> 
                     </fieldset> 
                </td>
 Wiki example code:  <h3>Skills</h3>
<fieldset class="repeating_skills">            
     <select name="attr_dtype" class="dtype">                
          <option value="d4">d4</option>
          <option value="d6">d6</option>
          <option value="d8">d8</option>
          <option value="d10">d10</option>
          <option value="d12">d12</option>
      </select>
      <input type="text" name="attr_skillname" />        
</fieldset>  So what is missing to for the sheet to save the skills with values in Attributes?
 
				
			