- <for-each select="$body">
- <html:tr>
- <for-each select="exslstr:tokenize(., '	')">
- <html:td>
- <value-of select="."/>
- </html:td>
- </for-each>
- </html:tr>
+ <for-each select="$head/following-sibling::*[normalize-space(.)!='']">
+ <choose>
+ <when test="starts-with(., '#')">
+ <comment>
+ <value-of select="substring-after(., '#')"/>
+ </comment>
+ </when>
+ <otherwise>
+ <variable name="cols">
+ <call-template name="书社:split">
+ <with-param name="source" select="string(.)"/>
+ <with-param name="separator" select="'	'"/>
+ </call-template>
+ </variable>
+ <html:tr>
+ <for-each select="exsl:node-set($cols)/*[count(exsl:node-set($headcols)/*)>=position()]">
+ <html:td>
+ <attribute name="data-tsv-header">
+ <value-of select="exsl:node-set($headcols)/*[count(current()/preceding-sibling::*)+1]"/>
+ </attribute>
+ <value-of select="."/>
+ <if test="position()=count(exsl:node-set($headcols)/*)">
+ <for-each select="following-sibling::*">
+ <text>	</text>
+ <value-of select="."/>
+ </for-each>
+ </if>
+ </html:td>
+ </for-each>
+ <for-each select="exsl:node-set($headcols)/*[position()>count(exsl:node-set($cols)/*)]">
+ <html:td/>
+ </for-each>
+ </html:tr>
+ </otherwise>
+ </choose>