ixyml 0.0.1

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.
Files changed (93) hide show
  1. data/.gitignore +19 -0
  2. data/.gitignore~ +17 -0
  3. data/Gemfile +12 -0
  4. data/Gemfile.lock +44 -0
  5. data/Gemfile~ +13 -0
  6. data/LICENSE +22 -0
  7. data/README.md +29 -0
  8. data/Rakefile +2 -0
  9. data/bin/dbg_x2o +8 -0
  10. data/bin/x2y +8 -0
  11. data/bin/y2x +17 -0
  12. data/ixyml.gemspec +23 -0
  13. data/lib/ixyml.rb +10 -0
  14. data/lib/ixyml/version.rb +3 -0
  15. data/lib/ixyml/xyml.rb +821 -0
  16. data/lib/ixyml/xyml_element.rb +778 -0
  17. data/test/dirTemp/ktest00.nml.j2j.json +1 -0
  18. data/test/dirTemp/ktest00.nml.nml.xml +53 -0
  19. data/test/dirTemp/ktest00.nml.nml.yaml +74 -0
  20. data/test/dirTemp/ktest00.nml.x2j.json +1 -0
  21. data/test/dirTemp/ktest00.nml.x2x.xml +53 -0
  22. data/test/dirTemp/ktest00.nml.xyj.yaml +134 -0
  23. data/test/dirTemp/ktest00.nml.xyx.xml +53 -0
  24. data/test/dirTemp/ktest00.nml.xyx.yaml +134 -0
  25. data/test/dirTemp/ktest00.nml.y2j.json +1 -0
  26. data/test/dirTemp/ktest00.nml.y2y.yaml +74 -0
  27. data/test/dirTemp/ktest00.nml.yxy.xml +2 -0
  28. data/test/dirTemp/ktest00.nml.yxy.yaml +74 -0
  29. data/test/dirTemp/ktest01.nml.yaml +74 -0
  30. data/test/dirTemp/ktest01.yxy.xml +2 -0
  31. data/test/dirTemp/ktest01.yxy.yaml +74 -0
  32. data/test/dirTemp/test01.nml.nml.xml +21 -0
  33. data/test/dirTemp/test01.nml.nml.yaml +5 -0
  34. data/test/dirTemp/test01.nml.x2j.json +1 -0
  35. data/test/dirTemp/test01.nml.x2x.xml +21 -0
  36. data/test/dirTemp/test01.nml.xyj.yaml +18 -0
  37. data/test/dirTemp/test01.nml.xyx.xml +21 -0
  38. data/test/dirTemp/test01.nml.xyx.yaml +18 -0
  39. data/test/dirTemp/test01.nml.y2j.json +1 -0
  40. data/test/dirTemp/test01.nml.y2y.yaml +5 -0
  41. data/test/dirTemp/test01.nml.yaml +74 -0
  42. data/test/dirTemp/test01.nml.yxy.xml +3 -0
  43. data/test/dirTemp/test01.nml.yxy.yaml +5 -0
  44. data/test/dirTemp/test01.yxy.xml +2 -0
  45. data/test/dirTemp/test01.yxy.yaml +74 -0
  46. data/test/dirTemp/testBreak.nml.yaml +7 -0
  47. data/test/dirTemp/testBreak.yxy.xml +5 -0
  48. data/test/dirTemp/testBreak.yxy.yaml +7 -0
  49. data/test/dirTemp/testCDATA.nml.nml.xml +26 -0
  50. data/test/dirTemp/testCDATA.nml.x2j.json +1 -0
  51. data/test/dirTemp/testCDATA.nml.x2x.xml +26 -0
  52. data/test/dirTemp/testCDATA.nml.xyj.yaml +18 -0
  53. data/test/dirTemp/testCDATA.nml.xyx.xml +26 -0
  54. data/test/dirTemp/testCDATA.nml.xyx.yaml +18 -0
  55. data/test/dirTemp/testCDATA.nml.y2j.json +1 -0
  56. data/test/dirTemp/testEscape.nml.nml.xml +77 -0
  57. data/test/dirTemp/testEscape.nml.nml.yaml +53 -0
  58. data/test/dirTemp/testEscape.nml.x2j.json +1 -0
  59. data/test/dirTemp/testEscape.nml.x2x.xml +77 -0
  60. data/test/dirTemp/testEscape.nml.xyj.yaml +213 -0
  61. data/test/dirTemp/testEscape.nml.xyx.xml +77 -0
  62. data/test/dirTemp/testEscape.nml.xyx.yaml +213 -0
  63. data/test/dirTemp/testEscape.nml.y2j.json +1 -0
  64. data/test/dirTemp/testEscape.nml.y2y.yaml +53 -0
  65. data/test/dirTemp/testEscape.nml.yxy.xml +2 -0
  66. data/test/dirTemp/testEscape.nml.yxy.yaml +53 -0
  67. data/test/dirTemp/testNS.nml.nml.xml +21 -0
  68. data/test/dirTemp/testNS.nml.x2j.json +1 -0
  69. data/test/dirTemp/testNS.nml.x2x.xml +21 -0
  70. data/test/dirTemp/testNS.nml.xyj.yaml +19 -0
  71. data/test/dirTemp/testNS.nml.xyx.xml +21 -0
  72. data/test/dirTemp/testNS.nml.xyx.yaml +19 -0
  73. data/test/dirTemp/testNS.nml.y2j.json +1 -0
  74. data/test/test_xyml.rb +167 -0
  75. data/test/test_xyml.rb~ +167 -0
  76. data/test/test_xyml_element.rb +241 -0
  77. data/test/test_xyml_element.rb~ +111 -0
  78. data/test/testfiles/ktest00.nml.ori.json +1 -0
  79. data/test/testfiles/ktest00.nml.ori.xml +53 -0
  80. data/test/testfiles/ktest00.nml.ori.yaml +74 -0
  81. data/test/testfiles/ktest00.nml.ori.yaml~ +75 -0
  82. data/test/testfiles/ktest01.ori.yaml +75 -0
  83. data/test/testfiles/test01.nml.ori.xml +21 -0
  84. data/test/testfiles/test01.nml.ori.yaml +5 -0
  85. data/test/testfiles/test01.ori.yaml +75 -0
  86. data/test/testfiles/testBreak.ori.yaml +10 -0
  87. data/test/testfiles/testCDATA.ng.ng.xml +26 -0
  88. data/test/testfiles/testEscape.nml.ori.xml +77 -0
  89. data/test/testfiles/testEscape.nml.ori.yaml +105 -0
  90. data/test/testfiles/testNS.nml.ori.xml +21 -0
  91. data/test/testfiles/xmlTemp.xml +2 -0
  92. data/test/testfiles/xymlTemp.xyml +6 -0
  93. metadata +230 -0
@@ -0,0 +1 @@
1
+ [{"quiz":["\n",{"quizUnit":["\n",{"unitText":[{"format":"html"},"次の",{"u":["下線部"]},"の読み仮名を漢字に直せ。"]},"\n",{"info2":[{"id":"info2a"},{"type":"defaultNumberOfLetters"},"3"]},"\n",{"info":[{"type":"defaultAllotment"},"\n",{"noChild":[]},"\n",{"noChild2":[]},"\n3"]},"\n",{"question":[{"type":"handWriting"},"\n",{"questionText":[{"format":"html"},"古く、",{"u":["ばいえん"]},"でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、"]},"\n",{"info":[{"type":"numberOfLetters"},"2"]},"\n",{"answer":[{"fraction":"100"},"\n",{"text":["煤煙"]},"\n"]},"\n",{"answer":[{"fraction":"0"},"\n",{"text":["梅園"]},"\n",{"feedback":["\n",{"text":["これは”ばいえん”違いですね。"]},"\n"]},"\n"]},"\n",{"source":["\n",{"author":["有島武郎"]},"\n",{"title":["或る女(前編)"]},"\n",{"link":["\n",{"label":["青空文庫"]},"\n",{"url":["http://www.aozora.gr.jp/"]},"\n"]},"\n"]},"\n"]},"\n",{"question":[{"type":"handWriting"},"\n",{"questionText":[{"format":"html"},"2古く",{"u":["ばいえん"]},"でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、"]},"\n",{"info":[{"type":"numberOfLetters"},"2"]},"\n",{"answer":[{"fraction":"100"},"\n",{"text":["2煤煙"]},"\n"]},"\n",{"answer":[{"fraction":"0"},"\n",{"text":["2梅園"]},"\n",{"feedback":["\n",{"text":["2これは”ばいえん”違いですね。"]},"\n"]},"\n"]},"\n",{"source":["\n",{"author":["2有島武郎"]},"\n",{"title":["2或る女(前編)"]},"\n",{"link":["\n",{"label":["2青空文庫"]},"\n",{"url":["2http://www.aozora.gr.jp/"]},"\n"]},"\n"]},"\n"]},"\n"]},"\n"]}]
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/
@@ -0,0 +1,2 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz><quizUnit><unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText><info2 type='defaultNumberOfLetters'>3</info2><info type='defaultAllotment'>3</info><question type='handWriting'><questionText format='html'>古く、&lt;u&gt;ばいえん&lt;/u&gt;でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info type='numberOfLetters'/><answer fraction='100'><text>煤煙</text></answer><answer fraction='0'><text>梅園</text><feedback><text>これは”ばいえん”違いですね。</text></feedback></answer><source><author>有島武郎</author><title>或る女(前編)</title><link><label>青空文庫</label><url>http://www.aozora.gr.jp/</url></link></source></question><question type='handWriting'><questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info type='numberOfLetters'/><answer fraction='100'><text>2煤煙</text></answer><answer fraction='0'><text>2梅園</text><feedback><text>2これは”ばいえん”違いですね。</text></feedback></answer><source><author>2有島武郎</author><title>2或る女(前編)</title><link><label>2青空文庫</label><url>2http://www.aozora.gr.jp/</url></link></source></question></quizUnit></quiz>
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info3:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info4:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info5:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/
@@ -0,0 +1,2 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz><quizUnit><unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText><info2 type='defaultNumberOfLetters'>3</info2><info3 type='defaultAllotment'>3</info3><question type='handWriting'><questionText format='html'>古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info4 type='numberOfLetters'/><answer fraction='100'><text>煤煙</text></answer><answer fraction='0'><text>梅園</text><feedback><text>これは”ばいえん”違いですね。</text></feedback></answer><source><author>有島武郎</author><title>或る女(前編)</title><link><label>青空文庫</label><url>http://www.aozora.gr.jp/</url></link></source></question><question type='handWriting'><questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText><info5 type='numberOfLetters'/><answer fraction='100'><text>2煤煙</text></answer><answer fraction='0'><text>2梅園</text><feedback><text>2これは”ばいえん”違いですね。</text></feedback></answer><source><author>2有島武郎</author><title>2或る女(前編)</title><link><label>2青空文庫</label><url>2http://www.aozora.gr.jp/</url></link></source></question></quizUnit></quiz>
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info3:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info4:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info5:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/
@@ -0,0 +1,21 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+ <text2>
10
+ abcdefg
11
+ hijklmnopq
12
+ rstuvwxyz
13
+ </text2>
14
+ </group1>
15
+ <group2>
16
+ <text1>
17
+ abcdefg
18
+ hijklmnopq
19
+ </text1>
20
+ </group2>
21
+ </quiz>
@@ -0,0 +1,5 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "adfadfads asdfadsfasf adfadfadsf dafadfa\nasdfasdfasdf adfadfasdfas adfadsf dsfdas, daff"
@@ -0,0 +1 @@
1
+ [{"quiz":["\n ",{"group1":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n rstuvwxyz\n "]},"\n ",{"text2":["\nabcdefg\nhijklmnopq\nrstuvwxyz\n "]},"\n "]},"\n ",{"group2":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n "]},"\n "]},"\n"]}]
@@ -0,0 +1,21 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+ <text2>
10
+ abcdefg
11
+ hijklmnopq
12
+ rstuvwxyz
13
+ </text2>
14
+ </group1>
15
+ <group2>
16
+ <text1>
17
+ abcdefg
18
+ hijklmnopq
19
+ </text1>
20
+ </group2>
21
+ </quiz>
@@ -0,0 +1,18 @@
1
+ ---
2
+ - quiz:
3
+ - "\n "
4
+ - group1:
5
+ - "\n "
6
+ - text1:
7
+ - "\n abcdefg\n hijklmnopq\n rstuvwxyz\n "
8
+ - "\n "
9
+ - text2:
10
+ - "\nabcdefg\nhijklmnopq\nrstuvwxyz\n "
11
+ - "\n "
12
+ - "\n "
13
+ - group2:
14
+ - "\n "
15
+ - text1:
16
+ - "\n abcdefg\n hijklmnopq\n "
17
+ - "\n "
18
+ - "\n"
@@ -0,0 +1,21 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <group1>
4
+ <text1>
5
+ abcdefg
6
+ hijklmnopq
7
+ rstuvwxyz
8
+ </text1>
9
+ <text2>
10
+ abcdefg
11
+ hijklmnopq
12
+ rstuvwxyz
13
+ </text2>
14
+ </group1>
15
+ <group2>
16
+ <text1>
17
+ abcdefg
18
+ hijklmnopq
19
+ </text1>
20
+ </group2>
21
+ </quiz>
@@ -0,0 +1,18 @@
1
+ ---
2
+ - quiz:
3
+ - "\n "
4
+ - group1:
5
+ - "\n "
6
+ - text1:
7
+ - "\n abcdefg\n hijklmnopq\n rstuvwxyz\n "
8
+ - "\n "
9
+ - text2:
10
+ - "\nabcdefg\nhijklmnopq\nrstuvwxyz\n "
11
+ - "\n "
12
+ - "\n "
13
+ - group2:
14
+ - "\n "
15
+ - text1:
16
+ - "\n abcdefg\n hijklmnopq\n "
17
+ - "\n "
18
+ - "\n"
@@ -0,0 +1 @@
1
+ [{"quiz":["\n ",{"group1":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n rstuvwxyz\n "]},"\n ",{"text2":["\nabcdefg\nhijklmnopq\nrstuvwxyz\n "]},"\n "]},"\n ",{"group2":["\n ",{"text1":["\n abcdefg\n hijklmnopq\n "]},"\n "]},"\n"]}]
@@ -0,0 +1,5 @@
1
+ ---
2
+ - quiz:
3
+ - group1:
4
+ - text:
5
+ - "adfadfads asdfadsfasf adfadfadsf dafadfa\nasdfasdfasdf adfadfasdfas adfadsf dsfdas, daff"
@@ -0,0 +1,74 @@
1
+ ---
2
+ - quiz:
3
+ - quizUnit:
4
+ - unitText:
5
+ - format: html
6
+ - 次の
7
+ - u:
8
+ - 下線部
9
+ - の読み仮名を漢字に直せ。
10
+ - info2:
11
+ - type: defaultNumberOfLetters
12
+ - 3
13
+ - info3:
14
+ - type: defaultAllotment
15
+ - 3
16
+ - question:
17
+ - type: handWriting
18
+ - questionText:
19
+ - format: html
20
+ - 古く、ばいえんでまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
21
+ - info4:
22
+ - type: numberOfLetters
23
+ - answer:
24
+ - fraction: 100
25
+ - text:
26
+ - 煤煙
27
+ - answer:
28
+ - fraction: 0
29
+ - text:
30
+ - 梅園
31
+ - feedback:
32
+ - text:
33
+ - これは”ばいえん”違いですね。
34
+ - source:
35
+ - author:
36
+ - 有島武郎
37
+ - title:
38
+ - 或る女(前編)
39
+ - link:
40
+ - label:
41
+ - 青空文庫
42
+ - url:
43
+ - http://www.aozora.gr.jp/
44
+ - question:
45
+ - type: handWriting
46
+ - questionText:
47
+ - format: html
48
+ - 2古く
49
+ - u:
50
+ - ばいえん
51
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
52
+ - info5:
53
+ - type: numberOfLetters
54
+ - answer:
55
+ - fraction: 100
56
+ - text:
57
+ - 2煤煙
58
+ - answer:
59
+ - fraction: 0
60
+ - text:
61
+ - 2梅園
62
+ - feedback:
63
+ - text:
64
+ - 2これは”ばいえん”違いですね。
65
+ - source:
66
+ - author:
67
+ - 2有島武郎
68
+ - title:
69
+ - 2或る女(前編)
70
+ - link:
71
+ - label:
72
+ - 2青空文庫
73
+ - url:
74
+ - 2http://www.aozora.gr.jp/