From a738b49ae2f0e55e3dfe1ffdfc83cc222baaa6a0 Mon Sep 17 00:00:00 2001 From: Christopher Chedeau Date: Mon, 23 Mar 2015 09:47:28 -0700 Subject: [PATCH] Website: initial page for videos --- docs/GettingStarted.md | 2 +- docs/Videos.md | 12 ++++++++++++ website/core/Marked.js | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 docs/Videos.md diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 3c6776397..5ff207167 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -4,7 +4,7 @@ title: Getting Started layout: docs category: Quick Start permalink: docs/getting-started.html -next: pixels +next: videos --- Our first React Native implementation is `ReactKit`, targeting iOS. We are also diff --git a/docs/Videos.md b/docs/Videos.md new file mode 100644 index 000000000..b236b7daf --- /dev/null +++ b/docs/Videos.md @@ -0,0 +1,12 @@ +--- +id: videos +title: Videos +layout: docs +category: Community Resources +permalink: docs/videos.html +next: pixels +--- + + + + diff --git a/website/core/Marked.js b/website/core/Marked.js index f7f6c5007..13eaab841 100644 --- a/website/core/Marked.js +++ b/website/core/Marked.js @@ -900,7 +900,7 @@ Parser.prototype.tok = function() { } case 'html': { return !this.token.pre && !this.options.pedantic - ? this.inline.output(this.token.text) + ? React.DOM.span({dangerouslySetInnerHTML: {__html: this.token.text}}) : this.token.text; } case 'paragraph': {