Re: [O] Converting paragraph to plain lis

2015-12-16 Thread John Kitchin
Here is a solution that works on your paragraph. #+BEGIN_SRC emacs-lisp (defun explode-paragraph () (interactive) (let (start end) ;; narrow to paragraph (backward-paragraph) (forward-line) (setq start (point)) (forward-paragraph) (previous-line) (setq end (point)) ;;

Re: [O] Converting paragraph to plain lis

2015-12-16 Thread Marcin Borkowski
On 2015-12-16, at 01:27, marvin doyley wrote: > Hi there, > > Does anybody know how to convert a paragraph to a plain list, and vice versa. > For example, I would like to convert > > Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse viverra > consectetur euismod. Donec non

[O] Converting paragraph to plain lis

2015-12-15 Thread marvin doyley
Hi there, Does anybody know how to convert a paragraph to a plain list, and vice versa. For example, I would like to convert Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse viverra consectetur euismod. Donec non tempor turpis. to 1. Lorem ipsum dolor sit amet, consecte