先に上げた gist を blogger に貼り付けるのの置換を書いてみた
めんどくさいんで gist の embed コードを入力すれば blogger 用の貼り付けコードを出してくれるの書いた。
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
# | |
# Gist Embed code to Blogger html script | |
# | |
gistEmbedCode = str(input("Please input Gist Embed code : ")) | |
pickGistCode = gistEmbedCode.rsplit('/')[4] | |
pickGistCode = pickGistCode.rpartition('.')[0] | |
#print(pickGistCode) | |
print("\n\r") | |
print("""<div class=\"gistLoad\" data-id=\"""",pickGistCode,"""\" id=\"gist-""",pickGistCode,"""/">""") | |
print(gistEmbedCode) | |
print("""</div>""") | |
print("""<script src="https://raw.github.com/moski/gist-Blogger/master/public/gistLoader.js" type="text/javascript"></script>""") | |
print("\n\r") |
スーパーやっつけ仕事な割に意外と使えちゃうのな