Skip to main content

MarsEdit Part 2

MarsEdit and Blogger are not cooperating, and I’m uncertain if I will use MarsEdit past the trail period. Currently, what the application offers me is a way to compose drafts outside of Apple Mail, but it isn’t offering me much more than that because I use Google’s blogging platform.

Annoyances that require using a menu choice, instead of the Option pane:

  • Date should be included with “Post Status” for scheduling purposes.
  • Enclosure settings should be within the editor window, along with Title.
  • Bullet lists should be a default formatting choice, as they are common.
More serious annoyances:
  • Paragraphs require two blank lines, even in Rich Text mode, or you must clean the code within Blogger.
  • Images do not function properly, no matter how many experiments I have tried. 
I’m not saving much time if I still need to carefully format a post in Blogger and insert images from within Google’s interface.

MarsEdit prefers WordPress, without a doubt. For Blogger, MarsEdit confusingly uses Categories as Tags, and Tags are left blank. If you attempt to migrate, I’m wondering if information is remapped properly or if you then have to fix the post categories and tag. Often, plug-ins exist for such migration hassles. I’d probably migrate outside MarsEdit and simply recreate the accounts in the editor.

I do not like the annoying two-returns as I would in a plaintext editor. Surely there is an easier way to fix the translation of paragraph to two breaks. Though this is a Blogger problem, it is well-known and an external editor should handle the improper but long-standing Blogger method.

It might be worth migrating five of my six blogs to WordPress, if I anticipated more readers and some income. As it is, blogging remains an outlet more than anything. It is a place to store my thoughts. MarsEdit reminds me that Blogger should have been updated years ago to something like Medium or a stripped-down WordPress.

I have too much content to migrate without some planning and effort. Ideally, MarsEdit would adapt, but I assume most of its users are loyal to WordPress.

Comments

Popular posts from this blog

MarsEdit and Blogging

MarsEdit (Photo credit: Wikipedia ) Mailing posts to blogs, a practice I adopted in 2005, allows a blogger like me to store copies of draft posts within email. If Blogger , WordPress, or the blogging platform of the moment crashes or for some other reason eats my posts, at least I have the original drafts of most entries. I find having such a nicely organized archive convenient — much easier than remembering to archive posts from Blogger or WordPress to my computer. With this post, I am testing MarsEdit from Red Sweater Software based on recent reviews, including an overview on 9to5Mac . Composing posts an email offers a fast way to prepare draft blogs, but the email does not always work well if you want to include basic formatting, images, and links to online resources. Submitting to Blogger via Apple Mail often produced complex HTML with unnecessary font and paragraph formatting styles. Problems with rich text led me to convert blog entries to plaintext in Apple Mail

Learning to Program

Late last night I installed the update to Apple's OS X programming tool suite, Xcode 4. This summer, in my "free" time I intend to work my way through my old copy of Teach Yourself C and the several Objective-C books I own. While I do play with various languages and tools, from AppleScript to PHP, I've never managed to master Objective-C — which is something I want to do. As I've written several times, knowing simple coding techniques is a practical skill and one that helps learn problem solving strategies. Even my use of AppleScript and Visual Basic for Applications (VBA) on a regular basis helps remind me to tackle problems in distinct steps, with clear objectives from step to step. There are many free programming tools that students should be encouraged to try. On OS X, the first two tools I suggest to non-technical students are Automator and AppleScript. These tools allow you to automate tasks on OS X, similar to the batch files of DOS or the macros of Wor

Learning to Code: Comments Count

I like comments in computer programming source code. I've never been the programmer to claim, "My code doesn't need comments." Maybe it is because I've always worked on so many projects that I need comments  to remind me what I was thinking when I entered the source code into the text editor. Most programmers end up in a similar situation. They look at a function and wonder, "Why did I do it this way?" Tangent : I also like comments in my "human" writing projects. One of the sad consequences of moving to digital media is that we might lose all the little marginalia authors and editors leave on manuscript drafts. That thought, the desire to preserve my notes, is worthy of its own blog post — so watch for a post on writing software and notes. Here are my rules for comments: Source code files should begin with identifying comments and an update log. Functions, subroutines, and blocks of code should have at least one descriptive comment.