From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julian Gehring Subject: orgweb/Changes: broken formatting of code blocks Date: Tue, 10 Apr 2012 21:55:51 +0200 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------030800070900060204010109" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:47034) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SHhAr-0002K7-39 for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 15:56:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SHhAo-0002Cu-TU for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 15:56:20 -0400 Received: from plane.gmane.org ([80.91.229.3]:48495) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SHhAo-0002CK-JA for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 15:56:18 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1SHhAl-0007Gr-8e for emacs-orgmode@gnu.org; Tue, 10 Apr 2012 21:56:15 +0200 Received: from embln.embl.de ([194.94.44.220]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Apr 2012 21:56:15 +0200 Received: from julian.gehring by embln.embl.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 10 Apr 2012 21:56:15 +0200 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org This is a multi-part message in MIME format. --------------030800070900060204010109 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, at the changes page of the orgmode website, some of the code block formatting seems to be broken (see http://orgmode.org/Changes.html#sec-3). Can anyone please check if the attached patch would fix this? With my local setup, this yields a proper display of the code blocks. Or do the commas in front of the code lines have a meaning that I am simply missing? Best Julian --------------030800070900060204010109 Content-Type: text/x-patch; name="0001-Changes.org-fix-code-block-formatting.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-Changes.org-fix-code-block-formatting.patch" >From 72e27909e8a01bdd44a85f05826a052e1dbe698a Mon Sep 17 00:00:00 2001 From: Julian Gehring Date: Tue, 10 Apr 2012 21:44:35 +0200 Subject: [PATCH] Changes.org: fix code block formatting --- Changes.org | 80 +++++++++++++++++++++++++++++------------------------------ 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/Changes.org b/Changes.org index 409fa95..adc1438 100644 --- a/Changes.org +++ b/Changes.org @@ -241,60 +241,60 @@ combines with =visual-line-mode=. This results in the following behavior. #+begin_src org - ,#+property: var foo=1 - ,#+property: var+ bar=2 + #+property: var foo=1 + #+property: var+ bar=2 - ,#+begin_src emacs-lisp - , (+ foo bar) - ,#+end_src + #+begin_src emacs-lisp + (+ foo bar) + #+end_src - ,#+results: - ,: 3 + #+results: + : 3 - ,#+begin_src emacs-lisp - , (org-entry-get (point) "var" t) - ,#+end_src + #+begin_src emacs-lisp + (org-entry-get (point) "var" t) + #+end_src - ,#+results: - ,: foo=1 bar=2 + #+results: + : foo=1 bar=2 - ,* overwriting a file-wide property - , :PROPERTIES: - , :var: foo=7 - , :END: + * overwriting a file-wide property + :PROPERTIES: + :var: foo=7 + :END: - ,#+begin_src emacs-lisp - , foo - ,#+end_src + #+begin_src emacs-lisp + foo + #+end_src - ,#+results: - ,: 7 + #+results: + : 7 - ,#+begin_src emacs-lisp - , (org-entry-get (point) "var" t) - ,#+end_src + #+begin_src emacs-lisp + (org-entry-get (point) "var" t) + #+end_src - ,#+results: - ,: foo=7 + #+results: + : foo=7 - ,* appending to a file-wide property - , :PROPERTIES: - , :var+: baz=3 - , :END: + * appending to a file-wide property + :PROPERTIES: + :var+: baz=3 + :END: - ,#+begin_src emacs-lisp - , (+ foo bar baz) - ,#+end_src + #+begin_src emacs-lisp + (+ foo bar baz) + #+end_src - ,#+results: - ,: 6 + #+results: + : 6 - ,#+begin_src emacs-lisp - , (org-entry-get (point) "var" t) - ,#+end_src + #+begin_src emacs-lisp + (org-entry-get (point) "var" t) + #+end_src - ,#+results: - ,: foo=1 bar=2 baz=3 + #+results: + : foo=1 bar=2 baz=3 #+end_src *** =org-agenda-custom-commands= has a default value ([[git:b3de2dbb953dcadacafeb179899ab9df184da4ff][git]]) -- 1.7.10 --------------030800070900060204010109--