emacs-devel
[Top][All Lists]
Advanced

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

Re: Convert README.org to plain text README while installing package


From: Yuri Khan
Subject: Re: Convert README.org to plain text README while installing package
Date: Sun, 19 Jun 2022 00:33:03 +0700

On Sun, 19 Jun 2022 at 00:14, <tomas@tuxteam.de> wrote:

> How would you delimit a source block?

Classic Markdown does it by indenting with +4 spaces, but this has no
way to declare the language of the block.

    (defun greet ()
        (message "Hello World!"))

GitHub-flavored Markdown does it with three backticks, optionally
followed by the language name on the same line, followed by lines of
the source block, followed by three backticks on a separate line.

```elisp
(defun greet()
    (message "Hello World!"))
```

Either is much less verbose/visually noisy than the equivalent Org syntax.



reply via email to

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