Can a column column slide be embedded in a github's README file?

I have a presentation slide in dynamics, and I want to insert it into the README.md page of the github repository. can this be done?

Here is my built-in 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 the introduction of the application ...

### Slide

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

the slide does not appear in the README repo section.

+4
source share
3 answers

No, you cannot, and you should not, mainly for security reasons.

GitHub does not allow the execution of an external script.

Mark this answer: Embed JavaScript in GitHub README.md

+4
source

No, you cannot embed scripts inside a GitHub markdown.

XSS ( ), GitHub .

+2

Unable to add scripts to markdown.
The mark can only be used to format text and no more.

Here are the things to use: enter image description here


What else can you do?

You can still embed images as you see here in this answer. So, convert the slides to images and paste them

+2
source

Source: https://habr.com/ru/post/1622618/


All Articles