We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5164b2f commit 1357c98Copy full SHA for 1357c98
1 file changed
README.org
@@ -10,7 +10,8 @@ Emacs can access many RDBMS systems via their command-line utilities using SQLi/
10
For instance, to reformat an org-mode table, do the following:
11
#+BEGIN_SRC emacs-lisp
12
(let ((to-format
13
-"| Foo | Bar |
+"
14
+| Foo | Bar |
15
|-----+-----|
16
| 1 | 2 |
17
| 3 | 4 |"))
@@ -43,10 +44,15 @@ New formats can be added by adding them to `format-table-format-alist' at runtim
43
44
45
Currently only exporting/importing arrays of hashes is supported. For instance, that previous org table:
46
47
+#+BEGIN_SRC emacs-lisp
48
+(let ((to-format
49
50
| Foo | Bar |
51
52
-| 3 | 4 |
53
+| 3 | 4 |"))
54
+ (format-table to-format 'org 'json))
55
+#+END_SRC
56
57
Will render as:
58
#+BEGIN_SRC javascript
0 commit comments