Created
September 23, 2016 02:19
-
-
Save koi-chan/4663ca1835be6a76729d2506d4192e28 to your computer and use it in GitHub Desktop.
Mery 用のマクロファイル集
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
// ----------------------------------------------------------------------------- | |
// ドイツ語特殊文字 | |
// | |
// Copyright (c) koi-chan. All Rights Reserved. | |
// www: http://cre.jp/koi-chan/ | |
// Twitter: @koichan779 | |
// License: MIT | |
// ----------------------------------------------------------------------------- | |
var special = { | |
a: "ä", | |
o: "ö", | |
u: "ü", | |
A: "Ä", | |
O: "Ö", | |
U: "Ü", | |
s: "ß" | |
}; | |
var original = window.Prompt( | |
'ウムラウトする前の文字、もしくはs(エスツェットの場合)を入力してください', | |
'' | |
); | |
document.selection.Text = special[original]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment