テーブルをMarkdownにエクスポートして、 Markdown Here を使用してメール内のテーブルをフォーマットすることができます。
M-x org-md-export-as-markdown
will export your document as Markdown, but the tables will be exported as HTML. This may be fine for your purposes, but if not you can install ox-pandoc and export your org-mode document with M-x org-pandoc-export-as-markdown_github
.
これはorgテーブルを変換します:
| Column 1 | Column 2 |
|----------+----------|
| a | 1 |
| b | 2 |
| c | 3 |
Markdownテーブルへ:
| Column 1 | Column 2 |
|----------|----------|
| a | 1 |
| b | 2 |
| c | 3 |
このテーブルをあなたの電子メールに貼り付け、ここにMarkdown Here(キーボードショートカット:Ctrl-Alt-m)を使用してフォーマットします。それは次のようになります:
