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': {