I am using Org-mode in Emacs to handle all my technical documentation. I would like to use Emacs to prepare questions that I have for Stack Overflow. Is there an Emacs mode for that, or even better, an extension for Org-mode to handle Stack Overflow formatting? Ideally it should include all formatting options supported by the markdown syntax used in the Stack Overflow question/comment buffers.
相关问题
- Symbol's function definition is void: declare-
- Markdown to clipboard as rich text
- How can I set the SVN password with Emacs 23.1 bui
- Emacs shell: save commit message
- Fixing Markdown styling in Notepad++
相关文章
- >>" markdown 引用语法" href="https://www.manongdao.com/article-2318498.html" > 有没有办法让 markdown-it 支持 ">>>" markdown 引用语法
- ess-rdired: I get this error “no ESS process is as
- Is there a Github markdown language identifier for
- Emacs/xterm color annoyance on Linux
- markdown自动代码缩进8格?
- Can you import/reference info from text files into
- 请问如何使用 C# 或是 regex 抓取出 markdown 内的图片链接呢 ?
- How do you center text in Gitlab markdown?
There is markdown-mode: http://jblevins.org/projects/markdown-mode/
See http://emacswiki.org/emacs/MarkdownMode for some customization.
And there is a markdown backend for the new export engine here: http://orgmode.org/w/?p=org-mode.git;a=blob_plain;f=contrib/lisp/org-md.el;hb=HEAD
Make sure you add the
contrib/lisp/
directory to yourload-path
.Then
(require 'org-export)
and(require 'org-md)
.M-x org-md-export-to-markdown RET
will export to markdown.Pandoc has support for reading a subset of org-mode and can output markdown.
In other words, you can keep writing in org-mode, including writing italics /like this/, and then export to markdown. From emacs you can convert to markdown by selecting the region, hitting C-u M-S-\ and typing pandoc -r org -t markdown, getting output like this:
Or, you can save the file and convert it at the command line.
Integrating Emacs with Stack Overflow
As mentioned you can use markdown-mode. To integrate markdown-mode with Stack Overflow you can use the Firefox plugin It's All Text which lets you edit textareas with an external editor. Here is how to set it up:
Install markdown-mode. If you use Debian or Ubuntu you can install it by issuing
or if you're on emacs 24 (or have package.el on emacs 23) and Marmalade or Melpa you can install it with
Install It's All Text.
Add the following to your .emacs to enable markdown-mode for Stack Overflow and Stack Exchange textareas:
Alternatively, if
as-external-alist
is defined—ifM-x describe-variable RET as-external-alist
doesn't fail—it will probably override yourauto-mode-alist
. It has a slightly different format (it's a list of pairs instead of a list of cons cells) so this will work:Press the blue edit button at the bottom right side of a textarea to edit it via emacs. The blue edit button is shown in the following screenshot:
In the following screenshot is an Emacs buffer in markdown-mode editing this post:
When you are done editing in Emacs save the buffer to send it to Firefox.
If you want this functionality for other domains you need to change the regexp above. The following recognizes Stack Exchange, Stack Overflow, Ask Ubuntu and Super User:
Using markdown-mode with Org-mode
To use markdow-mode with Org-mode you can use its feature for working with source code. With it you can include blocks of markdown inside your Org-mode buffers which you can edit via markdown-mode. You can use it as follows:
When in an Org-mode buffer enter
<s
on a newline and press Tab. This will result inEnter
markdown
after#+begin_src
so that you haveWhen inside the source block (between
#+begin_src markdown
and#+end_src
) press C-c ' to edit the source block with markdown-mode.Edit the source block in markdown-mode.
Press C-c ' to return to the Org-mode buffer and insert the edit. This can look like what the following screenshot shows:
It Is Easy With Chrome Too
This is less an answer than a test of my solution using the Edit with Emacs chrome plugin and the Emacs Edit Server configured to use markdown-mode for Stackoverflow (and other Stackexchange sites I use). All I had to do after installing the extension and MELPA packages was set
Gmail Message Support
Note in the above setting, I'm using org-mode for gmail messages. Still need to do a little work here, but it is possible, with a little effort, to draft your gmail message using org-mode and then use org-mime to generate html from your org structured text. You could just use markdown and a markdown to html conversion.
@N.N's answer is applicable to Chrome also, with these changes in details.
Chrome has Edit with Emacs extension, which is similar to It's all text. After installing it, you'll find further instructions from the extension options page.
There is an emacs customization group
edit-server
with options, most importantly the major mode change per site is configured differently than in @N.N's answer:Also, for the edit-server to work in terminal emacs, I had to disable the
edit-server-new-frame
option.