In your browser, right click the Markdown Here icon, go to options.
Delete all the css you see in the options. That is it.
This is my preferred solution and I use it all the time. Anyway, just in case you don’t like this solution here are some other solutions in no particular order.
There are multiple. From what I could read, the best looked like https://wordpress.org/plugins/wp-markdown/ closely followed by:
There are a few problems with the plugins.
What I would be really worried about is how those plugins treat old blog posts where you use classes or other html in your posts. I have no idea how those plugins handle that since they try to convert HTML to Markdown for editing. The second thing to be worried about is how those plugins store your blog posts, because the Markdown itself does not render in a browser, so you definitely need to test how your blogs look after you unistall a plugin.
I didn’t get a chance to test any of those plugins, but here is what I would do:
If all this works, I guess those plugins would be useful.
There are several online editors you could use to write and convert your Markdown. Those are a fairly good alternative to writing in the native WordPress editor:
There is also a bunch and I wasn’t too interested in this category. The one though that looks most useful is marked in combination with Sublime Text 2. Check out this tutorial over on tutsplus by @jeffrey_way.
The easiest way to get markdown to your terminal is:
1
2
brew install markdown
alternatives would be:
brew install multimarkdown
One little snippet I use sometimes is to convert my clipboard content from Markdown to HTML. This snippet is:
1
2
pbpaste | multimarkdown | pbcopy
If you use this a lot, I suggest you set a alias for it in your .bash_profile like they show over at maclife: http://www.maclife.com/article/columns/terminal_101_creating_aliases_commands
Now we are talking. Alfred rules. To setup a workflow (you need the Alfred Power Pack) create a new Workflow using an Inputs->Keyword and an Actions->Run Script:
After you connect them they should look like this:
Let us look into the actual elements:
all we do is set a keyword trigger to have alfred execute our shell script.
Notice the language is set to /bin/zsh and not /bin/bash plus we are escaping spaces. After that just paste in our script from above and you got yourself a nice little Markdown convertor.
I have quietly used multimarkdown in our terminal script above. Let me say a few words about the different Markdown variations. There are several with the traditional Markdown being the first one. Any variation from it has some additional elements you can do of the traditional Markdown syntax.
Especially for programmers the traditional Markdown with _word_
being turned to an italic word is pretty disturbing. This is why there is a special GitHub Flavored Markdown.
Some markdown variations worth checking out:
If you come accross any other great one, let me know.
One of the reasons why I love my Markdown Here browser extension so much is that it comes with syntax highlighting css (uses same as github) this is very nice for emails.
I very often use Jing to take screenshots for my blogs (see all images in here). Those images will be hosted somewhere else. In order to avoid losing those images, I use a plugin called Import External Images. This will give you the option to import your images to WordPress and avoid having to upload them manually! Yay productivity 🙂
Sometimes your converted html will look very strange. I always do double spaces before and after lists. This should fix it 🙂
Here is a very good post by Chris Coyer about Markdown and syntax highlighting: http://css-tricks.com/posting-code-blocks-wordpress-site/
Uff, long post, hope you got a lot out of this Markdown Introduction and learned how to use Markdown with WordPress and Evernote. Please let me know if you have any questions or if you have a tip for other people reading this.
A new version of content is available.