nadesiko3 3.3.32 → 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.
@@ -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
    ここまで。