Fix links in video descriptions

This commit is contained in:
Alister N. Mada
2016-03-16 12:51:08 +07:00
parent 5df5658a5e
commit c13e234ff7
6 changed files with 36 additions and 37 deletions

View File

@@ -57,9 +57,8 @@ export class Lecture extends React.Component {
return transcript.map((line, index) => (
<p
className='lead text-left'
key={ dashedName + index }>
{ line }
</p>
key={ dashedName + index }
dangerouslySetInnerHTML={{__html: line}} />
));
}