public
Description: A Tumblr mode for Emacs
Homepage: http://febuiles.github.com/tumble
Clone URL: git://github.com/febuiles/tumble.git
febuiles (author)
Mon Dec 29 14:58:20 -0800 2008
commit  ebadef62e48cdc05d8f9083cdf0189fa290dff05
tree    12c89129bbc83abfb169e85e94d9ec47df99a542
parent  57cfa11a56627a81ce418b8efe8c94e3630e8f6d
tumble /
name age message
file README.markdown Mon Dec 29 14:58:20 -0800 2008 Adding a project page link. [febuiles]
file tumble.el Mon Dec 29 10:57:08 -0800 2008 Fixing a typo in installation instructions. [febuiles]
directory vendor/ Sun Dec 07 19:15:38 -0800 2008 Removing http-* and using http-post-simple.el [febuiles]
README.markdown

Tumble - An Emacs mode for Tumblr

Please visit the project page for in-depth installation and usage instructions.

Overview


Tumble is a mode for interacting with Tumblr inside Emacs. It currently supports the following types of posts:

  • Text
  • Quote
  • Link
  • Chat
  • Photo
  • Audio
  • Video (only through embed)

You can start tumbling by using the following functions:

tumble-text-from-region
tumble-text-from-buffer

tumble-quote-from-region

tumble-link
tumble-link-with-description

tumble-chat-from-region
tumble-chat-from-buffer

tumble-photo-from-url
tumble-photo-from-file

tumble-audio

tumble-video-from-url

Read tumble.el for more information about each function.

Installation

Download Tumble to some directory:

$ git clone git://github.com/febuiles/tumble.git

Add it to your load list and require it:

(add-to-list 'load-path "~/some_directory/tumble")
(require 'tumble)

Open tumble.el and modify the following variables:

(setq tumble-email "your_email@something.com")
(setq tumble-password "your_password")
(setq tumble-url "your_tumblelog.tumblr.com")

(optional) Tumble uses no group for posting and Markdown as the default format but you can change these:

(setq tumble-group "your_group.tumblr.com")
(setq tumble-format "html")

License

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

Check tumble.el for more information.

Fork freely!