[Emacs] Add SQL to ob languages

This commit is contained in:
Lucien Cartier-Tilet 2022-11-18 03:53:59 +01:00
parent 8022fff67e
commit b518e078d9
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 14 additions and 10 deletions

View File

@ -4591,6 +4591,7 @@ activated. Here are the languages I activated in my Org-mode configuration:
| python | | python |
| sass | | sass |
| shell | | shell |
| sql |
#+NAME: org-babel-languages-gen #+NAME: org-babel-languages-gen
#+header: :cache yes :results replace #+header: :cache yes :results replace
@ -4603,16 +4604,19 @@ activated. Here are the languages I activated in my Org-mode configuration:
"\n ")) "\n "))
#+END_SRC #+END_SRC
#+RESULTS[c17ed46f816ab4113f6b13066b3c39e1217e106e]: org-babel-languages-gen #+RESULTS[b0a5bea13e6ba99525ad166ea5538e74ba4c6ddc]: org-babel-languages-gen
: '((C . t) #+begin_example
: (emacs-lisp . t) '((C . t)
: (gnuplot . t) (emacs-lisp . t)
: (latex . t) (gnuplot . t)
: (makefile . t) (latex . t)
: (plantuml . t) (makefile . t)
: (python . t) (plantuml . t)
: (sass . t) (python . t)
: (shell . t)) (sass . t)
(shell . t)
(sql . t))
#+end_example
The corresponding code is as follows: The corresponding code is as follows:
#+NAME: org-babel-load-languages #+NAME: org-babel-load-languages