How to insert a gist file into an HTML file?

I used to embed a gist file in HTML using the following code:

<script src="https://gist.github.com/4577639.js?file=hello_world_addr.wsdl"></script> 

This does not work anymore since all files are displayed, not a single file. Does anyone know why this is happening and how to fix it? Thanks!

+7
source share
1 answer

Here you are good sir

 <script src="https://gist.github.com/claudemamo/4577639.js?file=hello_world_addr.wsdl"> </script> 
+10
source

All Articles