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

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

[nongnu] elpa/d-mode 8d0ed04 172/346: README: Use syntax highlighting in


From: ELPA Syncer
Subject: [nongnu] elpa/d-mode 8d0ed04 172/346: README: Use syntax highlighting in code blocks
Date: Sun, 29 Aug 2021 11:00:24 -0400 (EDT)

branch: elpa/d-mode
commit 8d0ed0460189d0e91fa454866c1ed7b9b36f99e2
Author: Vladimir Panteleev <git@thecybershadow.net>
Commit: Vladimir Panteleev <git@thecybershadow.net>

    README: Use syntax highlighting in code blocks
---
 README.md | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md
index 7a2b402..31b37a2 100644
--- a/README.md
+++ b/README.md
@@ -14,17 +14,21 @@ The best way of installing this major mode, at least for 
Emacs 24, is to use the
 or MELPA Stable to the list of repositories to access this mode. For those who 
want only formal, tagged
 releases use MELPA Stable:
 
-    (require 'package)
-    (add-to-list 'package-archives
-             '("melpa-stable" . "https://stable.melpa.org/packages/";) t)
-    (package-initialize)
+```elisp
+(require 'package)
+(add-to-list 'package-archives
+         '("melpa-stable" . "https://stable.melpa.org/packages/";) t)
+(package-initialize)
+```
 
 For those who want rolling releases as they happen use MELPA:
 
-    (require 'package)
-    (add-to-list 'package-archives
-             '("melpa" . "https://melpa.org/packages/";) t)
-    (package-initialize)
+```elisp
+(require 'package)
+(add-to-list 'package-archives
+         '("melpa" . "https://melpa.org/packages/";) t)
+(package-initialize)
+```
 
 and then use M-x package-list-packages to get to the package listing and 
install from there. MELPA tracks
 this Git repository and updates relatively soon after each commit or formal 
release. For more detail on



reply via email to

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