From 179a6512408b6df0722c7d80efc44a9cd06a999e Mon Sep 17 00:00:00 2001 From: Nicolas Cuillery Date: Mon, 3 Oct 2016 15:59:46 -0700 Subject: [PATCH] Use HTML for links including closing bracket Summary: The markdown parser (Marked) used by the docs doesn't handle links ending with a closing bracket. The result is a broken link in the [Integration With Existing Apps](http://facebook.github.io/react-native/docs/integration-with-existing-apps.html#our-sample-app) guide. Using HTML makes the parser ignoring these links. Note: this is a well-known issue of Marked: https://github.com/chjj/marked/issues/690 Note bis: The fix #9429 didn't solve the problem. Closes https://github.com/facebook/react-native/pull/10225 Differential Revision: D3964341 fbshipit-source-id: 61564d1cbb632fa1f0c71e7c6cbdc0b9a200caa4 --- docs/IntegrationWithExistingApps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/IntegrationWithExistingApps.md b/docs/IntegrationWithExistingApps.md index 31b211729..a5385f6d0 100644 --- a/docs/IntegrationWithExistingApps.md +++ b/docs/IntegrationWithExistingApps.md @@ -103,11 +103,11 @@ $ sudo gem install cocoapods -Assume the [app for integration](https://github.com/JoelMarcey/iOS-2048) is a [2048](https://en.wikipedia.org/wiki/2048_(video_game)) game. Here is what the main menu of the native application looks like without React Native. +Assume the [app for integration](https://github.com/JoelMarcey/iOS-2048) is a 2048 game. Here is what the main menu of the native application looks like without React Native. -Assume the [app for integration](https://github.com/JoelMarcey/swift-2048) is a [2048](https://en.wikipedia.org/wiki/2048_(video_game) game. Here is what the main menu of the native application looks like without React Native. +Assume the [app for integration](https://github.com/JoelMarcey/swift-2048) is a 2048 game. Here is what the main menu of the native application looks like without React Native.