It's very simple
1. Make gist
https://gist.github.com/
2. https://gist.github.com/mishin/a955752a26e3c6baa3b6
Copy Embed html
1. Make gist
https://gist.github.com/
Copy Embed html
3. So, we got <script src="https://gist.github.com/mishin/a955752a26e3c6baa3b6.js"></script>
4. And put this code to end of html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This is my perl tips collection: | |
http://grep.cpan.me/?q=author%3A%28MIYAGAWA%7CDCONWAY%7CBDFOY%7CSZABGAB%29+shift | |
author:(MIYAGAWA|DCONWAY|BDFOY|SZABGAB) shift | |
http://eax.me/perl5-oop/ | |
http://grep.cpan.me/?q=author%3A%28MIYAGAWA%7CDCONWAY%7CBDFOY%29+__DATA__ | |
author:(MIYAGAWA|DCONWAY|BDFOY) __DATA__ | |
→ milla-tutorial$ sp_ch () {(cat $1|aspell --lang=ru-yo list|aspell --lang=en list); };sp_ch lib/POD2/RU/perlretut.pod | |
{ (cat $1|aspell --lang=ru-yo list|aspell --lang=en list); } | |
sp_ch () {(cat $1|aspell --lang=ru-yo list|aspell --lang=en list); };sp_ch lib/POD2/RU/perlretut.pod | |
perl -M"File::Slurp qw(edit_file)" -e "edit_file { s/=item (\d+)/=item C<$1>/g } 'lib/POD2/RU/perlretut.pod' " | |
perl -pi.bak -e 's/=item (\d+)/=item C<$1>/g' lib/POD2/RU/perlretut.pod |