From be37ec510e795c6758cde716ab9167db79b20c42 Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Fri, 10 Aug 2012 13:37:59 -0700
Subject: [PATCH] Documented org-like pipe tables.

---
 README | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/README b/README
index 6ebcc4d47..ccd8f55dd 100644
--- a/README
+++ b/README
@@ -1519,6 +1519,18 @@ and lists, and cannot span multiple lines.
 
   [PHP markdown extra]: http://michelf.ca/projects/php-markdown/extra/#table
 
+Note:  Pandoc also recognizes pipe tables of the following
+form, as can produced by Emacs' orgtbl-mode:
+
+    | One | Two   |
+    |-----+-------|
+    | my  | table |
+    | is  | nice  |
+
+The difference is that `+` is used instead of `|`. Other orgtbl features
+are not supported. In particular, to get non-default column alignment,
+you'll need to add colons as above.
+
 Title block
 -----------