emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/org-present a6027fd7ea 08/47: convert readme to markdown


From: ELPA Syncer
Subject: [nongnu] elpa/org-present a6027fd7ea 08/47: convert readme to markdown
Date: Sat, 8 Jan 2022 13:58:28 -0500 (EST)

branch: elpa/org-present
commit a6027fd7ea8918a99c9bf6e3a331daee6fe5f314
Author: Ric Lister <rlister@gmail.com>
Commit: Ric Lister <rlister@gmail.com>

    convert readme to markdown
---
 README.md   | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 README.rdoc | 46 ----------------------------------------------
 2 files changed, 54 insertions(+), 46 deletions(-)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000000..9a40610e33
--- /dev/null
+++ b/README.md
@@ -0,0 +1,54 @@
+# org-present-mode
+
+This is meant to be an extremely minimalist presentation tool for
+Emacs [org-mode](http://orgmode.org/).  Simply layout your
+presentation with each slide under a top-level header, start the minor
+mode with 'org-present', and page through each slide with left/right
+keys.
+
+## Philosophy
+
+Most of the time I'm giving a talk, it is a work in progress and I want to be 
be able to edit
+as I go along. Also, to split my frame and work on code examples with my 
slides still visible.
+
+## Configuration
+
+Add something like this to your emacs config:
+
+```lisp
+(add-to-list 'load-path "~/path/to/org-present")
+(autoload 'org-present "org-present" nil t)
+
+(add-hook 'org-present-mode-hook
+          (lambda ()
+            (org-present-big)
+            (org-display-inline-images)))
+
+(add-hook 'org-present-mode-quit-hook
+          (lambda ()
+            (org-present-small)
+            (org-remove-inline-images)))
+```
+
+Then start the minor mode with:
+
+```
+M-x org-present
+```
+
+Keys are left/right for movement, C-c C-= for large txt, C-c C-- for
+small text, and C-c C-q for quit (which will return you back to
+vanilla org-mode).
+
+## Beautification
+
+This works well with
+[hide-mode-line](http://webonastick.com/emacs-lisp/hide-mode-line.el),
+which hides the mode-line when only one frame and buffer are open.
+
+If you're on a Mac you might also want to look at the
+[fullscreen 
patch](http://cloud.github.com/downloads/typester/emacs/feature-fullscreen.patch).
+
+== Copyright
+
+Copyright (c) 2012 Richard Lister.
diff --git a/README.rdoc b/README.rdoc
deleted file mode 100644
index 8c89c5ba54..0000000000
--- a/README.rdoc
+++ /dev/null
@@ -1,46 +0,0 @@
-= org-present-mode
-
-This is meant to be an extremely minimalist presentation tool for Emacs 
{org-mode}[http://orgmode.org/].
-Simply layout your presentation with each slide under a top-level header, 
start the minor mode with
-'org-present', and page through each slide with left/right keys.
-
-== Philosophy
-
-Most of the time I'm giving a talk, it is a work in progress and I want to be 
be able to edit
-as I go along. Also, to split my frame and work on code examples with my 
slides still visible.
-
-== Configuration
-
-Add something like this to your emacs config:
-
-  (add-to-list 'load-path "~/path/to/org-present")
-  (autoload 'org-present "org-present" nil t)
-
-  (add-hook 'org-present-mode-hook
-            (lambda ()
-              (org-present-big)
-              (org-display-inline-images)))
- 
-  (add-hook 'org-present-mode-quit-hook
-            (lambda ()
-              (org-present-small)
-              (org-remove-inline-images)))
-
-Then start the minor mode with:
-
-  M-x org-present
-
-Keys are left/right for movement, C-c C-= for large txt, C-c C-- for small 
text, and C-c C-q for quit
-(which will return you back to vanilla org-mode).
-
-== Beautification
-
-This works well with hide-mode-line 
(http://webonastick.com/emacs-lisp/hide-mode-line.el),
-which hides the mode-line when only one frame and buffer are open.
-
-If you're on a Mac you might also want to look at the fullscreen patch here:
-http://cloud.github.com/downloads/typester/emacs/feature-fullscreen.patch
-
-== Copyright
-
-Copyright (c) 2012 Richard Lister.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]