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

out_of_order_macros.md (176B)


      1 # Out of order macros
      2 <!-- :Tangle(ruby) <the block> -->
      3 ```ruby
      4 x = "whatever"
      5 ```
      6 
      7 <!-- :Tangle(ruby) <^> output.rb -->
      8 ```ruby
      9 def something
     10     <<the block>>
     11     x
     12 end
     13 ```