vim-literate-markdown

A Vim plugin to replicate a subset of Org mode's literate programming, for Markdown files.
git clone git://git.alex.balgavy.eu/vim-literate-markdown.git
Log | Files | Refs | README

commit 7b654c910976db22d19d91ce5fff5410c94e23e2
parent abde70f51030a17c33a78d5bc99c78ef076b4088
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Sat, 26 Feb 2022 12:54:47 +0100

Update readme

Diffstat:
MREADME.md | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -18,7 +18,8 @@ For examples of literate programming, see [`examples/`](examples/). Literate programming is a great way to provide explanation about what you're doing in code. It also lets you document what you're doing without the need to follow the exact order of the code, unlike comments embedded in source code. -You can e.g. layout the overall structure of a program and then jump immediately to some specific computation. +You can e.g. lay out the overall structure of a program and then jump immediately to some specific computation. +You can also write code out-of-order where that aids in explanation. Emacs handles literate programming quite well in Org mode; I didn't know about anything similar for Vim, particularly for Markdown files. So I wrote this to allow literate programming in Markdown, because in my opinion Markdown is a much more universal syntax than Org.