Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
developit authored Mar 16, 2017
1 parent 8ca4f21 commit d5de7de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ describe('snarkdown()', () => {
expect(snarkdown('### I like tiny libraries')).to.equal('<h3>I like tiny libraries</h3>');
});

it('parses titles with reference links', () => {
it('parses titles with reference links', () => {
expect(
snarkdown('# I like [tiny libraries]\n\n[tiny libraries]: https://github.com/developit/snarkdown')
).to.equal('<h1>I like <a href="https://github.com/developit/snarkdown">tiny libraries</a></h1>');
snarkdown('# I like [tiny libraries]\n\n[tiny libraries]: https://github.com/developit/snarkdown')
).to.equal('<h1>I like <a href="https://github.com/developit/snarkdown">tiny libraries</a></h1>');
});
});

Expand Down

0 comments on commit d5de7de

Please sign in to comment.