Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can speaker deck slide be embedded in README file of github?

I have a presentation slide in speakerdeck and i want to embed it in README.md page of github repository. is it possible to do so?

Here is my embedded script from speakerdeck

<script async class="speakerdeck-embed" data-id="3586d5e7f45ce6" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>

README.md

###Introduction

This is a introduction of the app ...

###Slide

<script async class="speakerdeck-embed" data-id="3586d6f45ce6" data-ratio="1.33333333333333" src="//speakerdeck.com/assets/embed.js"></script>

slide does not appear on README section of repo.

like image 701
achyutdev Avatar asked Jan 03 '16 14:01

achyutdev


People also ask

How do I add a PowerPoint to a readme in GitHub?

Open up the PowerPoint presentation. In the File menu, there is an Export... command. That will let you turn the slides into PNG images that we can link to from the README.md file.

Can you put powerpoints on GitHub?

First, you can simply upload your slides, e.g. . ppt or . pptx, to your repo. You won't be able to see the slides when you click on the PowerPoint filename, but anyone who clicks on View Raw will download the deck.

Can I embed a video in GitHub readme?

Therefore you do not need to use a third party converter to convert your video to GIF format. With the latest update all you have to do is open your markdown editor in GitHub and just drag your media into the editor and it should be added to your README.


1 Answers

No, you can't and you shouldn't mostly because of security reasons.

GitHub won't allow the execution of an external script.

Check this answer: Embed JavaScript in GitHub README.md

like image 122
David Gomez Avatar answered Sep 30 '22 03:09

David Gomez