Pages

Saturday, September 11, 2010

Tagged org-googlecl as now includes interactive blog prompt


General function to prompt you if you really want to blog the org
entry if you are in an org buffer.





(defun googlecl-prompt-blog ()
"If in a org buffer prompt whether to blog the entire entry else normal text blog."
(interactive)
(if (eq major-mode 'org-mode)
(if (yes-or-no-p "Blog the Org Entry?")
(org-googlecl-blog)
(googlecl-blog))
(googlecl-blog)))






org-googlecl-blog at github


No comments:

Post a Comment