Skip to content

Commit 86243cb

Browse files
committed
style(CHANGELOG): Fix code blocks in breaking changes
1 parent 9291aaa commit 86243cb

File tree

1 file changed

+23
-10
lines changed

1 file changed

+23
-10
lines changed

CHANGELOG.md

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -58,32 +58,41 @@
5858
To migrate your code, surround the text of these attributes with quotes.
5959

6060
Before:
61-
62-
<pagination first-text="<<" ...></pagination>
61+
62+
```
63+
<pagination first-text="<<" ...></pagination>
64+
```
6365

6466
After:
65-
66-
<pagination first-text="'<<'" ...></pagination>
67+
68+
```
69+
<pagination first-text="'<<'" ...></pagination>
70+
```
6771

6872
- **progressbar:**
6973
The 'value' is replaced by 'percent'.
7074

7175
Before:
72-
73-
<progress value="..."></progress>
76+
77+
```
78+
<progress value="..."></progress>
79+
```
7480

7581
After:
76-
77-
<progress percent="..."></progress>
82+
83+
```
84+
<progress percent="..."></progress>
85+
```
7886

7987
- **tabs:**
8088
The 'tabs' directive has been renamed to 'tabset', and
8189
the 'pane' directive has been renamed to 'tab'.
8290

8391
To migrate your code, follow the example below.
8492

85-
Before:
93+
Before:
8694

95+
```
8796
<tabs>
8897
<pane heading="one">
8998
First Content
@@ -92,9 +101,11 @@
92101
{{apple.content}}
93102
</pane>
94103
</tabs>
104+
```
95105

96-
After:
106+
After:
97107

108+
```
98109
<tabset>
99110
<tab heading="one">
100111
First Content
@@ -103,6 +114,8 @@
103114
{{apple.content}}
104115
</tab>
105116
</tabset>
117+
```
118+
106119

107120
# 0.3.0 (2013-04-30)
108121

0 commit comments

Comments
 (0)