Skip to content

Commit a738b49

Browse files
committed
Website: initial page for videos
1 parent ca47be3 commit a738b49

3 files changed

Lines changed: 14 additions & 2 deletions

File tree

docs/GettingStarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Getting Started
44
layout: docs
55
category: Quick Start
66
permalink: docs/getting-started.html
7-
next: pixels
7+
next: videos
88
---
99

1010
Our first React Native implementation is `ReactKit`, targeting iOS. We are also

docs/Videos.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
id: videos
3+
title: Videos
4+
layout: docs
5+
category: Community Resources
6+
permalink: docs/videos.html
7+
next: pixels
8+
---
9+
10+
<iframe width="650" height="315" src="//www.youtube.com/embed/KVZ-P-ZI6W4" frameborder="0" allowfullscreen></iframe>
11+
12+
<iframe width="650" height="315" src="//www.youtube.com/embed/7rDsRXj9-cU" frameborder="0" allowfullscreen></iframe>

website/core/Marked.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ Parser.prototype.tok = function() {
900900
}
901901
case 'html': {
902902
return !this.token.pre && !this.options.pedantic
903-
? this.inline.output(this.token.text)
903+
? React.DOM.span({dangerouslySetInnerHTML: {__html: this.token.text}})
904904
: this.token.text;
905905
}
906906
case 'paragraph': {

0 commit comments

Comments
 (0)