>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