Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Escape both parentheses in links #183

Merged
merged 1 commit into from
May 28, 2019
Merged

Conversation

benjie
Copy link
Contributor

@benjie benjie commented May 28, 2019

Prior to this, draft-js-import-markdown could not import a link that was output by draft-js-export-markdown that contained an open parenthesis (.

Failure looked like this:

 FAIL  packages/draft-js-import-markdown/src/__tests__/stateFromMarkdown-test.js
  ● stateFromMarkdown › should correctly parse link containing escaped parenthesis

    Expected { entityMap: {}, blocks: [ { text: '[link1](http://msdn.microsoft.com/en-us/library/aa752574(VS.85%29.aspx)', type: 'unstyled', depth: 0, inlineStyleRanges: [], entityRanges: [], data: {} } ] } to equal { entityMap: { 0: { type: 'LINK', mutability: 'MUTABLE', data: { url: 'http://msdn.microsoft.com/en-us/library/aa752574(VS.85%29.aspx' } } }, blocks: [ { text: 'link1', type: 'unstyled', depth: 0, inlineStyleRanges: [], entityRanges: [ { offset: 0, length: 5, key: 0 } ], data: {} } ] }
      
      at assert (node_modules/expect/lib/assert.js:29:9)
      at Expectation.toEqual (node_modules/expect/lib/Expectation.js:81:30)
      at Object.<anonymous> (packages/draft-js-import-markdown/src/__tests__/stateFromMarkdown-test.js:223:5)
          at new Promise (<anonymous>)
      at process._tickCallback (internal/process/next_tick.js:68:7)

This PR escapes both ( and ) in links, enabling greater compatibility between import and export.

Copy link
Owner

@sstur sstur left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for your contribution!

@sstur sstur merged commit fd9582c into sstur:master May 28, 2019
@benjie benjie deleted the link-parenthesis branch May 29, 2019 09:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants