From mboxrd@z Thu Jan 1 00:00:00 1970 From: stardiviner Subject: Still there are some places that the new org-babel markers are not unified yet Date: Thu, 7 Dec 2017 22:51:35 +0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59949) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eMxWc-000115-Lv for emacs-orgmode@gnu.org; Thu, 07 Dec 2017 09:51:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eMxWZ-0007XJ-Hy for emacs-orgmode@gnu.org; Thu, 07 Dec 2017 09:51:46 -0500 Received: from mail-pg0-x231.google.com ([2607:f8b0:400e:c05::231]:42462) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eMxWZ-0007Ww-C0 for emacs-orgmode@gnu.org; Thu, 07 Dec 2017 09:51:43 -0500 Received: by mail-pg0-x231.google.com with SMTP id e14so4617266pgr.9 for ; Thu, 07 Dec 2017 06:51:42 -0800 (PST) Received: from [0.0.0.0] ([119.28.89.243]) by smtp.gmail.com with ESMTPSA id r77sm9949238pfa.78.2017.12.07.06.51.38 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Dec 2017 06:51:39 -0800 (PST) Content-Language: en-US List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-org-mode By default, the org-babel markers is lower-case now. But I found in the following case, it is upper-case still. ``` #+begin_src clojure :results code :wrap src html (:body (clj-http.client/get "http://localhost:80")) #+end_src #+RESULTS: #+BEGIN_src html "\n\n\nWelcome to nginx!\n\n\n\n

Welcome to nginx!

\n

If you see this page, the nginx web server is successfully installed and\nworking. Further configuration is required.

\n\n

For online documentation and support please refer to\nnginx.org.
\nCommercial support is available at\nnginx.com.

\n\n

Thank you for using nginx.

\n\n\n" #+END_src ``` You can see that `#+BEGIN_src` and `#+END_src`. Maybe there are more places need to be updated and unified. (a project scope query replace will be great)