Skip to content

Commit

Permalink
Update keyboard.xsl
Browse files Browse the repository at this point in the history
  • Loading branch information
tboenig committed Jun 23, 2022
1 parent cac5dbd commit eb09bf1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion scripts/keyboard.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,15 @@ Names
<xsl:variable name="keys">
<xsl:for-each-group select="fn:current-group()" group-by="fn:string[@key = 'alpha']">
<xsl:sort order="ascending" select="fn:string[@key = 'alpha']"/>
<line><xsl:for-each select="fn:current-group()">\u<xsl:value-of select="fn:string[@key = 'codepoint']"/><sp/></xsl:for-each></line>
<line>
<xsl:for-each select="fn:current-group()">
{
"row": 1,
"column": 3,
"character": "<xsl:value-of select="fn:string[@key = 'mufichar']"/>"
}<sp/>
</xsl:for-each>
</line>
</xsl:for-each-group>
</xsl:variable>
<xsl:message select="$keys"/>
Expand Down

0 comments on commit eb09bf1

Please sign in to comment.