Heading One
Heading Two
Heading Three
Heading Four
Heading Five
Heading Six
Inline Elements
This is some text with bold, italic and bold italic text1. It also has a link.
There is also inserted text and deleted text. Search results get a highlight as well.
Blockquote
This is a blockquote
Lists
Ordered List
- This
- is a
- numbered list
- containing
- an
- unordered
- list
- and
- continuing
Unordered List
- Unordered
- list
- with
- sub-list
- and
- more
Horizontal Rule
Foo
Bar
Table
Some text
| Table Heading | Center align | Right align | Table Heading |
|---|---|---|---|
| Item 1 | Item 3 | Item 4 | Item 5 |
| Item 1 | Item 3 | Item 4 | Item 5 |
| Item 1 | Item 3 | Item 4 | Item 5 |
| Item 1 | Item 3 | Item 4 | Item 5 |
| Item 1 | Item 3 | Item 4 | Item 5 |
Some more text
Code
Inline code
Some normal text with some inline code in it, plus keyboard input and sample output.
Block Code
Text
require 'twitter_ebooks'
class MyBot < Ebooks::Bot
# Configuration here applies to all MyBots
def configure
self.consumer_key = ENV['TWITTER_CONSUMER_KEY']
self.consumer_secret = ENV['TWITTER_CONSUMER_SECRET']
end
def on_startup
model = Ebooks::Model.load("model/text.model")
scheduler.cron '0 6,18,22 * * * America/New_York' do
tweet(model.make_statement(140))
end
end
end
# Make a MyBot and attach it to an account
MyBot.new("mage__ebooks") do |bot|
bot.access_token = ENV['TWITTER_ACCESS_TOKEN']
bot.access_token_secret = ENV['TWITTER_ACCESS_TOKEN_SECRET']
end
More text
Messages
This is OK. Link
This is info. Link
This is a warning. Link
This is an error. Link