Skip to content

Commit e305039

Browse files
authored
docs: Add code fences (anishkny#46)
* docs(changelog): Add code fences * docs(README): Point to GitHub Security in badge
1 parent 5d696f4 commit e305039

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,22 @@ This should simplify usage.
1313

1414
Before:
1515

16+
```
1617
[
1718
module.exports.incrementFavoritesCount,
1819
module.exports.decrementFavoritesCount,
1920
] = integrify({
2021
rule: 'MAINTAIN_COUNT',
2122
...
23+
```
2224

2325
After:
2426

27+
```
2528
module.exports.maintainFavoritesCount = integrify({
2629
rule: 'MAINTAIN_COUNT',
2730
...
31+
```
2832

2933
### Features
3034

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build Status](https://travis-ci.com/anishkny/integrify.svg?branch=master)](https://travis-ci.com/anishkny/integrify)
44
[![Coverage Status](https://coveralls.io/repos/github/anishkny/integrify/badge.svg?branch=master)](https://coveralls.io/github/anishkny/integrify?branch=master)
55
[![Greenkeeper badge](https://badges.greenkeeper.io/anishkny/integrify.svg)](https://greenkeeper.io/)
6-
[![Known Vulnerabilities](https://snyk.io/test/github/anishkny/integrify/badge.svg?targetFile=package.json)](https://snyk.io/test/github/anishkny/integrify?targetFile=package.json)
6+
[![Security](https://img.shields.io/badge/security-GitHub-blue)](https://github.com/anishkny/integrify/network/alerts)
77
[![npm package](https://img.shields.io/npm/v/integrify.svg)](https://www.npmjs.com/package/integrify)
88
[![Mentioned in Awesome Firebase](https://awesome.re/mentioned-badge.svg)](https://github.com/jthegedus/awesome-firebase)
99

0 commit comments

Comments
 (0)