nadesiko3 3.3.28 → 3.3.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/batch/cmd_txt2json.nako3 +3 -1
- package/batch/command.txt +881 -881
- package/batch/jsplugin2text.nako3 +21 -8
- package/batch/pickup_command.nako3 +29 -6
- package/package.json +36 -34
- package/release/_hash.txt +16 -16
- package/release/_script-tags.txt +14 -14
- package/release/command_cnako3.json +1 -1
- package/release/nako_gen_async.js +1 -1
- package/release/stats.json +1 -1
- package/release/version.js +1 -1
- package/release/wnako3.js +1 -1
- package/release/wnako3webworker.js +1 -1
- package/src/commander_ja.mjs +1 -1
- package/src/wnako3mod.mts +2 -2
- package/src/wnako_version.mjs +2 -2
- package/src/wnako_version.mts +2 -2
- package/test/browser/test/plugin_browser_test.js +0 -1
- package/test/browser/test/plugin_webworker_test.js +0 -1
- package/tools/nako3edit/index.mjs +1 -2
- package/{src/nako3server.mjs → tools/nako3server/index.mjs} +1 -1
package/batch/cmd_txt2json.nako3
CHANGED
|
@@ -36,13 +36,14 @@ P_list=[]
|
|
|
36
36
|
ここまで。
|
|
37
37
|
Sを「/^\|(.+)/」で正規表現マッチ。
|
|
38
38
|
もし、そうならば
|
|
39
|
-
CMDは抽出文字列[0]
|
|
39
|
+
CMDは抽出文字列[0]&"|||||"
|
|
40
40
|
CMDを「|」で区切る
|
|
41
41
|
C=それ
|
|
42
42
|
タイプ=トリム(C[0])
|
|
43
43
|
名前=トリム(C[1])
|
|
44
44
|
引数=トリム(C[2])
|
|
45
45
|
説明=トリム(C[3])
|
|
46
|
+
URL=トリム(C[4])
|
|
46
47
|
ヨミ_cnako3=トリム(C[4])
|
|
47
48
|
ヨミ=LEFT(ヨミ_cnako3,1)
|
|
48
49
|
もし、タイプ=「関数」ならば
|
|
@@ -58,6 +59,7 @@ P_list=[]
|
|
|
58
59
|
V_cnako3[「ヨミ」]=ヨミ_cnako3
|
|
59
60
|
V_cnako3[「引数」]=引数
|
|
60
61
|
V_cnako3[「説明」]=説明
|
|
62
|
+
V_cnako3["URL"]=URL
|
|
61
63
|
P_cnako3[名前]=V_cnako3
|
|
62
64
|
P_listに名前を配列追加
|
|
63
65
|
ここまで。
|