ほげほげふがふが。
引用などもこのようにして 簡単にマークアップ可能です。
リンクはこうやって: Google 記述できるよ。
改行するには、行末に半角スペースを2つ挿入すれば
いいらしいです。
- チキンラーメンを封を切らずに麺を砕く(大きさはお好みにより様々でOK)
- ご飯を炊く
- ご飯に生卵をかけ、醤油を少々入れてかき混ぜる
- 食す。ウマー
コードのハイライトは次のように書く。kramdownの拡張記法っぽい?
Google謹製のprettyprintライブラリを利用してみた。
# -*- coding: utf-8 -*-
require_relative 'twitterbot'
Twitter.configure {|config|
config.consumer_key = 'consumer key'
config.consumer_secret = 'consumer secret'
config.oauth_token = 'oauth token'
config.oauth_token_secret = 'oauth token secret'
}
counter = 0
while counter < 10
begin
bot = TwitterBot::Crawler.new('BOTのscreen_name', '取得元のscreen_name')
bot.study
bot.reply_to_mentions unless ARGV.include?("-no-reply")
bot.tweet unless ARGV.include?("-no-tweet")
break
rescue Exception => e
puts e
counter += 1
end
end
{:.prettyprint}