Index: trunk/parsers/wikidom/demos/synth/es.js |
— | — | @@ -40,25 +40,28 @@ |
41 | 41 | }, |
42 | 42 | { |
43 | 43 | 'type': 'table', |
| 44 | + 'attributes': { 'style': 'width: 600px; border: solid 1px;' }, |
44 | 45 | 'rows': [ |
45 | 46 | { |
46 | 47 | 'cells': [ |
47 | 48 | { |
| 49 | + 'attributes': { 'style': 'border: solid 1px;' }, |
48 | 50 | 'document': { |
49 | 51 | 'blocks': [ |
50 | 52 | { |
51 | 53 | 'type': 'paragraph', |
52 | | - 'content': { 'text': 'test 1' } |
| 54 | + 'content': { 'text': 'row 1 & cell 1' } |
53 | 55 | } |
54 | 56 | ] |
55 | 57 | } |
56 | 58 | }, |
57 | 59 | { |
| 60 | + 'attributes': { 'style': 'border: solid 1px;' }, |
58 | 61 | 'document': { |
59 | 62 | 'blocks': [ |
60 | 63 | { |
61 | 64 | 'type': 'paragraph', |
62 | | - 'content': { 'text': 'test 2' } |
| 65 | + 'content': { 'text': 'row 1 & cell 2' } |
63 | 66 | } |
64 | 67 | ] |
65 | 68 | } |
— | — | @@ -68,26 +71,89 @@ |
69 | 72 | { |
70 | 73 | 'cells': [ |
71 | 74 | { |
| 75 | + 'attributes': { 'style': 'border: solid 1px;' }, |
72 | 76 | 'document': { |
73 | 77 | 'blocks': [ |
74 | 78 | { |
75 | 79 | 'type': 'paragraph', |
76 | | - 'content': { 'text': 'test 3' } |
| 80 | + 'content': { 'text': 'row 2 & cell 1' } |
77 | 81 | } |
78 | 82 | ] |
79 | 83 | } |
80 | 84 | }, |
81 | 85 | { |
| 86 | + 'attributes': { 'style': 'border: solid 1px;' }, |
82 | 87 | 'document': { |
83 | 88 | 'blocks': [ |
84 | 89 | { |
85 | 90 | 'type': 'paragraph', |
86 | | - 'content': { 'text': 'test 4' } |
87 | | - } |
| 91 | + 'content': { 'text': 'row 2 & cell 2' } |
| 92 | + }, |
| 93 | + { |
| 94 | + 'type': 'list', |
| 95 | + 'style': 'number', |
| 96 | + 'items': [ |
| 97 | + { |
| 98 | + 'content': { 'text': 'First item' }, |
| 99 | + 'lists': [ |
| 100 | + { |
| 101 | + 'style': 'bullet', |
| 102 | + 'items': [ |
| 103 | + { 'content': { 'text': 'First subitem' } }, |
| 104 | + { 'content': { 'text': 'Second subitem' } } |
| 105 | + ] |
| 106 | + } |
| 107 | + ] |
| 108 | + }, |
| 109 | + { |
| 110 | + 'content': { |
| 111 | + 'text': 'Second item', |
| 112 | + 'annotations': [ |
| 113 | + { |
| 114 | + 'type': 'italic', |
| 115 | + 'range': { |
| 116 | + 'start': 0, |
| 117 | + 'end': 6 |
| 118 | + } |
| 119 | + } |
| 120 | + ] |
| 121 | + } |
| 122 | + }, |
| 123 | + { |
| 124 | + 'content': { |
| 125 | + 'text': 'Third item', |
| 126 | + 'annotations': [ |
| 127 | + { |
| 128 | + 'type': 'bold', |
| 129 | + 'range': { |
| 130 | + 'start': 0, |
| 131 | + 'end': 5 |
| 132 | + } |
| 133 | + } |
| 134 | + ] |
| 135 | + } |
| 136 | + }, |
| 137 | + { |
| 138 | + 'content': { |
| 139 | + 'text': 'Fourth item', |
| 140 | + 'annotations': [ |
| 141 | + { |
| 142 | + 'type': 'ilink', |
| 143 | + 'range': { |
| 144 | + 'start': 7, |
| 145 | + 'end': 11 |
| 146 | + }, |
| 147 | + 'data': { 'title': 'User:JohnDoe' } |
| 148 | + } |
| 149 | + ] |
| 150 | + } |
| 151 | + } |
| 152 | + ] |
| 153 | + } |
88 | 154 | ] |
89 | 155 | } |
90 | 156 | } |
91 | | - ] |
| 157 | + ] |
92 | 158 | } |
93 | 159 | ] |
94 | 160 | }, |