This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var littleKana = ['ょ', 'ゅ', 'ゃ', 'ぁ', 'ぃ', 'ぅ', 'ぇ', 'ぉ']; | |
| var kana = []; | |
| var kanaString = document.getElementById('kana').innerHTML; | |
| var intonation = Number(document.getElementById('intonation').innerHTML); | |
| function replaceString (first, last) { | |
| var beginTag = ( | |
| '<span style="' + | |
| 'border-top: medium solid;' | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Rebase commits run in headless branches named with 'no branch' | |
| # If we're in a branch with that name, assume we're rebasing | |
| # If we really want to run checks during rebasing, | |
| # there's a pre-rebase hook available | |
| BRANCH_NAME=$(git branch | grep '*' | grep -c 'no branch') | |
| if [ "$BRANCH_NAME" != "0" ] | |
| then | |
| exit 0 |