Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
style(CHANGELOG): Highlight code blocks in breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ajoslin committed Jun 24, 2013
1 parent 86243cb commit 1fb30d1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,28 +59,28 @@

Before:

```
<pagination first-text="<<" ...></pagination>
```html
<pagination first-text="<<"></pagination>
```

After:

```
<pagination first-text="'<<'" ...></pagination>
```html
<pagination first-text="'<<'"></pagination>
```

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

Before:

```
```html
<progress value="..."></progress>
```

After:

```
```html
<progress percent="..."></progress>
```

Expand All @@ -92,7 +92,7 @@

Before:

```
```html
<tabs>
<pane heading="one">
First Content
Expand All @@ -105,7 +105,7 @@

After:

```
```html
<tabset>
<tab heading="one">
First Content
Expand Down

0 comments on commit 1fb30d1

Please sign in to comment.