I wrote this blog post in markdown without writing markdown
Actually, I wrote Org.
Github pages is awesome, with the default supported jekyll
, you can’t
write in org-mode, some people resort to alternative site generators,
like hugo
, for a workaround, and here is another way:
edit-as-format.
How to use the package
With this package, you can edit one format as another format, in
emacs, as long as both format supported by pandoc, like org
<->
markdown
.
Here’s the steps:
-
Create this blog post as markdown, open it in emacs. (the parent buffer)
-
M-x
edit-as-format-org
will open an org-mode buffer. (the indirect buffer) -
Write in this buffer with Org syntax,
C-x C-s
to commit back to parent buffer.
It works vice versa, in case you want to edit Org files as markdown,
M-x
edit-as-format
choose markdown
from the prompt. Or, define
your own convenient commands:
(defun edit-org-as-markdown ()
(interactive)
(edit-as-format "org" "markdown"))
Why should you use it
What really matters about blogging format, the syntax or storage format? Here is my view:
Factor | Really Matters? |
---|---|
Syntax | Yes |
Writing Experience | Yes |
Storage file | No |
- I like Org over markdown, because of the syntax, I like to write slash(/) for italic, which is more intuitive than star(*)
- I like Org inside Emacs, it feels soooo good editing Org tables
with
TAB
key - How is the file stored,
*.md
file or*.org
file? pure text? or even binary? Not important, only if it can be edited in emacs with Org syntax
If you agree with me, the hugo
solution seems less attractive, you
should try edit-as-format
;)
Org mode is such big thing, pandoc might not support all of it’s features, I just show you the most basic ones: emphasis, links, ordered/unordered list, code blocks and tables, that’s great amount for blog posting.
Caution: edit-as-format-org
will process the whole buffer if there’s
no marked region, for posts with
front-matter, mark region to
exclude it first.