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,53 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <quizUnit>
4
+ <unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText>
5
+ <info2 id='info2a' type='defaultNumberOfLetters'>3</info2>
6
+ <info type='defaultAllotment'>
7
+ <noChild/>
8
+ <noChild2/>
9
+ 3</info>
10
+ <question type='handWriting'>
11
+ <questionText format='html'>古く、<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
12
+ <info type='numberOfLetters'>2</info>
13
+ <answer fraction='100'>
14
+ <text>煤煙</text>
15
+ </answer>
16
+ <answer fraction='0'>
17
+ <text>梅園</text>
18
+ <feedback>
19
+ <text>これは”ばいえん”違いですね。</text>
20
+ </feedback>
21
+ </answer>
22
+ <source>
23
+ <author>有島武郎</author>
24
+ <title>或る女(前編)</title>
25
+ <link>
26
+ <label>青空文庫</label>
27
+ <url>http://www.aozora.gr.jp/</url>
28
+ </link>
29
+ </source>
30
+ </question>
31
+ <question type='handWriting'>
32
+ <questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
33
+ <info type='numberOfLetters'>2</info>
34
+ <answer fraction='100'>
35
+ <text>2煤煙</text>
36
+ </answer>
37
+ <answer fraction='0'>
38
+ <text>2梅園</text>
39
+ <feedback>
40
+ <text>2これは”ばいえん”違いですね。</text>
41
+ </feedback>
42
+ </answer>
43
+ <source>
44
+ <author>2有島武郎</author>
45
+ <title>2或る女(前編)</title>
46
+ <link>
47
+ <label>2青空文庫</label>
48
+ <url>2http://www.aozora.gr.jp/</url>
49
+ </link>
50
+ </source>
51
+ </question>
52
+ </quizUnit>
53
+ </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 @@
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,53 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <quizUnit>
4
+ <unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText>
5
+ <info2 id='info2a' type='defaultNumberOfLetters'>3</info2>
6
+ <info type='defaultAllotment'>
7
+ <noChild/>
8
+ <noChild2/>
9
+ 3</info>
10
+ <question type='handWriting'>
11
+ <questionText format='html'>古く、<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
12
+ <info type='numberOfLetters'>2</info>
13
+ <answer fraction='100'>
14
+ <text>煤煙</text>
15
+ </answer>
16
+ <answer fraction='0'>
17
+ <text>梅園</text>
18
+ <feedback>
19
+ <text>これは”ばいえん”違いですね。</text>
20
+ </feedback>
21
+ </answer>
22
+ <source>
23
+ <author>有島武郎</author>
24
+ <title>或る女(前編)</title>
25
+ <link>
26
+ <label>青空文庫</label>
27
+ <url>http://www.aozora.gr.jp/</url>
28
+ </link>
29
+ </source>
30
+ </question>
31
+ <question type='handWriting'>
32
+ <questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
33
+ <info type='numberOfLetters'>2</info>
34
+ <answer fraction='100'>
35
+ <text>2煤煙</text>
36
+ </answer>
37
+ <answer fraction='0'>
38
+ <text>2梅園</text>
39
+ <feedback>
40
+ <text>2これは”ばいえん”違いですね。</text>
41
+ </feedback>
42
+ </answer>
43
+ <source>
44
+ <author>2有島武郎</author>
45
+ <title>2或る女(前編)</title>
46
+ <link>
47
+ <label>2青空文庫</label>
48
+ <url>2http://www.aozora.gr.jp/</url>
49
+ </link>
50
+ </source>
51
+ </question>
52
+ </quizUnit>
53
+ </quiz>
@@ -0,0 +1,134 @@
1
+ ---
2
+ - quiz:
3
+ - "\n"
4
+ - quizUnit:
5
+ - "\n"
6
+ - unitText:
7
+ - format: html
8
+ - 次の
9
+ - u:
10
+ - 下線部
11
+ - の読み仮名を漢字に直せ。
12
+ - "\n"
13
+ - info2:
14
+ - id: info2a
15
+ - type: defaultNumberOfLetters
16
+ - 3
17
+ - "\n"
18
+ - info:
19
+ - type: defaultAllotment
20
+ - "\n"
21
+ - noChild:
22
+ -
23
+ - "\n"
24
+ - noChild2:
25
+ -
26
+ - "\n3"
27
+ - "\n"
28
+ - question:
29
+ - type: handWriting
30
+ - "\n"
31
+ - questionText:
32
+ - format: html
33
+ - 古く、
34
+ - u:
35
+ - ばいえん
36
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
37
+ - "\n"
38
+ - info:
39
+ - type: numberOfLetters
40
+ - 2
41
+ - "\n"
42
+ - answer:
43
+ - fraction: 100
44
+ - "\n"
45
+ - text:
46
+ - 煤煙
47
+ - "\n"
48
+ - "\n"
49
+ - answer:
50
+ - fraction: 0
51
+ - "\n"
52
+ - text:
53
+ - 梅園
54
+ - "\n"
55
+ - feedback:
56
+ - "\n"
57
+ - text:
58
+ - これは”ばいえん”違いですね。
59
+ - "\n"
60
+ - "\n"
61
+ - "\n"
62
+ - source:
63
+ - "\n"
64
+ - author:
65
+ - 有島武郎
66
+ - "\n"
67
+ - title:
68
+ - 或る女(前編)
69
+ - "\n"
70
+ - link:
71
+ - "\n"
72
+ - label:
73
+ - 青空文庫
74
+ - "\n"
75
+ - url:
76
+ - http://www.aozora.gr.jp/
77
+ - "\n"
78
+ - "\n"
79
+ - "\n"
80
+ - "\n"
81
+ - question:
82
+ - type: handWriting
83
+ - "\n"
84
+ - questionText:
85
+ - format: html
86
+ - 2古く
87
+ - u:
88
+ - ばいえん
89
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
90
+ - "\n"
91
+ - info:
92
+ - type: numberOfLetters
93
+ - 2
94
+ - "\n"
95
+ - answer:
96
+ - fraction: 100
97
+ - "\n"
98
+ - text:
99
+ - 2煤煙
100
+ - "\n"
101
+ - "\n"
102
+ - answer:
103
+ - fraction: 0
104
+ - "\n"
105
+ - text:
106
+ - 2梅園
107
+ - "\n"
108
+ - feedback:
109
+ - "\n"
110
+ - text:
111
+ - 2これは”ばいえん”違いですね。
112
+ - "\n"
113
+ - "\n"
114
+ - "\n"
115
+ - source:
116
+ - "\n"
117
+ - author:
118
+ - 2有島武郎
119
+ - "\n"
120
+ - title:
121
+ - 2或る女(前編)
122
+ - "\n"
123
+ - link:
124
+ - "\n"
125
+ - label:
126
+ - 2青空文庫
127
+ - "\n"
128
+ - url:
129
+ - 2http://www.aozora.gr.jp/
130
+ - "\n"
131
+ - "\n"
132
+ - "\n"
133
+ - "\n"
134
+ - "\n"
@@ -0,0 +1,53 @@
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <quiz>
3
+ <quizUnit>
4
+ <unitText format='html'>次の<u>下線部</u>の読み仮名を漢字に直せ。</unitText>
5
+ <info2 id='info2a' type='defaultNumberOfLetters'>3</info2>
6
+ <info type='defaultAllotment'>
7
+ <noChild/>
8
+ <noChild2/>
9
+ 3</info>
10
+ <question type='handWriting'>
11
+ <questionText format='html'>古く、<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
12
+ <info type='numberOfLetters'>2</info>
13
+ <answer fraction='100'>
14
+ <text>煤煙</text>
15
+ </answer>
16
+ <answer fraction='0'>
17
+ <text>梅園</text>
18
+ <feedback>
19
+ <text>これは”ばいえん”違いですね。</text>
20
+ </feedback>
21
+ </answer>
22
+ <source>
23
+ <author>有島武郎</author>
24
+ <title>或る女(前編)</title>
25
+ <link>
26
+ <label>青空文庫</label>
27
+ <url>http://www.aozora.gr.jp/</url>
28
+ </link>
29
+ </source>
30
+ </question>
31
+ <question type='handWriting'>
32
+ <questionText format='html'>2古く<u>ばいえん</u>でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、</questionText>
33
+ <info type='numberOfLetters'>2</info>
34
+ <answer fraction='100'>
35
+ <text>2煤煙</text>
36
+ </answer>
37
+ <answer fraction='0'>
38
+ <text>2梅園</text>
39
+ <feedback>
40
+ <text>2これは”ばいえん”違いですね。</text>
41
+ </feedback>
42
+ </answer>
43
+ <source>
44
+ <author>2有島武郎</author>
45
+ <title>2或る女(前編)</title>
46
+ <link>
47
+ <label>2青空文庫</label>
48
+ <url>2http://www.aozora.gr.jp/</url>
49
+ </link>
50
+ </source>
51
+ </question>
52
+ </quizUnit>
53
+ </quiz>
@@ -0,0 +1,134 @@
1
+ ---
2
+ - quiz:
3
+ - "\n"
4
+ - quizUnit:
5
+ - "\n"
6
+ - unitText:
7
+ - format: html
8
+ - 次の
9
+ - u:
10
+ - 下線部
11
+ - の読み仮名を漢字に直せ。
12
+ - "\n"
13
+ - info2:
14
+ - id: info2a
15
+ - type: defaultNumberOfLetters
16
+ - 3
17
+ - "\n"
18
+ - info:
19
+ - type: defaultAllotment
20
+ - "\n"
21
+ - noChild:
22
+ -
23
+ - "\n"
24
+ - noChild2:
25
+ -
26
+ - "\n3"
27
+ - "\n"
28
+ - question:
29
+ - type: handWriting
30
+ - "\n"
31
+ - questionText:
32
+ - format: html
33
+ - 古く、
34
+ - u:
35
+ - ばいえん
36
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
37
+ - "\n"
38
+ - info:
39
+ - type: numberOfLetters
40
+ - 2
41
+ - "\n"
42
+ - answer:
43
+ - fraction: 100
44
+ - "\n"
45
+ - text:
46
+ - 煤煙
47
+ - "\n"
48
+ - "\n"
49
+ - answer:
50
+ - fraction: 0
51
+ - "\n"
52
+ - text:
53
+ - 梅園
54
+ - "\n"
55
+ - feedback:
56
+ - "\n"
57
+ - text:
58
+ - これは”ばいえん”違いですね。
59
+ - "\n"
60
+ - "\n"
61
+ - "\n"
62
+ - source:
63
+ - "\n"
64
+ - author:
65
+ - 有島武郎
66
+ - "\n"
67
+ - title:
68
+ - 或る女(前編)
69
+ - "\n"
70
+ - link:
71
+ - "\n"
72
+ - label:
73
+ - 青空文庫
74
+ - "\n"
75
+ - url:
76
+ - http://www.aozora.gr.jp/
77
+ - "\n"
78
+ - "\n"
79
+ - "\n"
80
+ - "\n"
81
+ - question:
82
+ - type: handWriting
83
+ - "\n"
84
+ - questionText:
85
+ - format: html
86
+ - 2古く
87
+ - u:
88
+ - ばいえん
89
+ - でまっ黒にすすけた煉瓦壁の陰に汽車が停まると、
90
+ - "\n"
91
+ - info:
92
+ - type: numberOfLetters
93
+ - 2
94
+ - "\n"
95
+ - answer:
96
+ - fraction: 100
97
+ - "\n"
98
+ - text:
99
+ - 2煤煙
100
+ - "\n"
101
+ - "\n"
102
+ - answer:
103
+ - fraction: 0
104
+ - "\n"
105
+ - text:
106
+ - 2梅園
107
+ - "\n"
108
+ - feedback:
109
+ - "\n"
110
+ - text:
111
+ - 2これは”ばいえん”違いですね。
112
+ - "\n"
113
+ - "\n"
114
+ - "\n"
115
+ - source:
116
+ - "\n"
117
+ - author:
118
+ - 2有島武郎
119
+ - "\n"
120
+ - title:
121
+ - 2或る女(前編)
122
+ - "\n"
123
+ - link:
124
+ - "\n"
125
+ - label:
126
+ - 2青空文庫
127
+ - "\n"
128
+ - url:
129
+ - 2http://www.aozora.gr.jp/
130
+ - "\n"
131
+ - "\n"
132
+ - "\n"
133
+ - "\n"
134
+ - "\n"