Skip to content

Commit

Permalink
add test for not breaking up blockquotes
Browse files Browse the repository at this point in the history
  • Loading branch information
notslang committed Oct 27, 2019
1 parent 97a6fa1 commit 9ffe5b3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions test/index.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ describe 'blockquotes', ->
> end
''')

it 'should not break up blockquotes', ->
tidyMdSnippet('''
> Thank you for attending the \_\_\_\_\_\_ hackathon! Lets go over the rules:
>
> - rule 1
> - rule 2
> - rule 3
''').should.equal('''
> Thank you for attending the \_\_\_\_\_\_ hackathon! Lets go over the rules:
>
> - rule 1
> - rule 2
> - rule 3
''')




describe 'lists', ->
it 'should normalize unordered lists', ->
tidyMdSnippet('''
Expand Down

0 comments on commit 9ffe5b3

Please sign in to comment.