Skip to content

Commit 0671815

Browse files
authored
Merge pull request #2 from vonDowntown/master
fix unescaped | in API table
2 parents 086ca16 + 3cf4e81 commit 0671815

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

README.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<img alt="angular-material-extensions's logo"
3-
height="256px" width="256px" style="text-align: center;"
3+
height="256px" width="256px" style="text-align: center;"
44
src="https://cdn.jsdelivr.net/gh/angular-material-extensions/fab-menu@master/assets/angular-material-extensions-logo.svg">
55
</p>
66

@@ -32,7 +32,7 @@
3232
Do you have any question or suggestion ? Please do not hesitate to contact us!
3333
Alternatively, provide a PR | open an appropriate issue [here](https://github.com/angular-material-extensions/fab-menu/issues)
3434

35-
If you like this project, support [angular-material-extensions](https://github.com/angular-material-extensions)
35+
If you like this project, support [angular-material-extensions](https://github.com/angular-material-extensions)
3636
by starring :star: and sharing it :loudspeaker:
3737

3838
## Table of Contents
@@ -81,7 +81,7 @@ Now add the library via the `angular schematics`
8181
ng add @angular-material-extensions/fab-menu
8282
```
8383

84-
## 2. Install via *npm*. (Alternative)
84+
## 2. Install via *npm*. (Alternative)
8585

8686
Now install `@angular-material-extensions/fab-menu` via:
8787
```shell
@@ -128,7 +128,7 @@ Other modules in your application like for lazy loading import ` MatSelectCountr
128128
| isActive | `Input()` | `boolean` | `falase` | Whether the component is active
129129
| disabled | `Input()` | `boolean` | `false` | Whether the component is disabled
130130
| closeAfterSelection | `Input()` | `boolean` | `true` | Close after selecting a fab menu item
131-
| onFabMenuItemSelected | `Output()` | `EventEmitter<string | number>` | - | emits the selected button by id
131+
| onFabMenuItemSelected | `Output()` | `EventEmitter<string \| number>` | - | emits the selected button by id
132132

133133
### Methods
134134

@@ -163,7 +163,7 @@ type MatFabMenuDirection = 'top' | 'bottom' | 'left' | 'right';
163163
## [Usage](https://angular-material-extensions.github.io/fab-menu)
164164

165165
```html
166-
<mat-fab-menu color="primary"
166+
<mat-fab-menu color="primary"
167167
[fabButtons]="fabButtonsRandom">
168168
</mat-fab-menu>
169169
```
@@ -217,7 +217,7 @@ fabCountries: MatFabMenu[] = [
217217
```
218218

219219
```html
220-
<mat-fab-menu color="primary"
220+
<mat-fab-menu color="primary"
221221
[fabButtons]="fabButtonsRandom">
222222
</mat-fab-menu>
223223
```
@@ -228,7 +228,7 @@ fabCountries: MatFabMenu[] = [
228228
</p>
229229

230230
```html
231-
<mat-fab-menu color="primary"
231+
<mat-fab-menu color="primary"
232232
direction="bottom"
233233
[fabButtons]="fabButtonsRandom">
234234
</mat-fab-menu>
@@ -240,7 +240,7 @@ fabCountries: MatFabMenu[] = [
240240
</p>
241241

242242
```html
243-
<mat-fab-menu color="primary"
243+
<mat-fab-menu color="primary"
244244
direction="left"
245245
[fabButtons]="fabButtonsRandom">
246246
</mat-fab-menu>
@@ -252,7 +252,7 @@ fabCountries: MatFabMenu[] = [
252252
</p>
253253

254254
```html
255-
<mat-fab-menu color="primary"
255+
<mat-fab-menu color="primary"
256256
direction="right"
257257
[fabButtons]="fabButtonsRandom">
258258
</mat-fab-menu>
@@ -302,7 +302,7 @@ $ npm start
302302
+ Drop an email to: [Anthony Nahas](mailto:[email protected])
303303
+ or open an appropriate [issue](https://github.com/angular-material-extensions/fab-menu/issues)
304304
+ let us chat on [Gitter](https://gitter.im/angular-material-extensions/Lobby)
305-
305+
306306
Built by and for developers :heart: we will help you :punch:
307307

308308
---
@@ -318,4 +318,3 @@ This project is supported by [jetbrains](https://www.jetbrains.com/) with 1 ALL
318318
## License
319319

320320
Copyright (c) 2019 [Anthony Nahas](https://github.com/AnthonyNahas). Licensed under the MIT License (MIT)
321-

0 commit comments

Comments
 (0)