Skip to content

Instantly share code, notes, and snippets.

@moxley
Last active August 29, 2015 13:57
Show Gist options
  • Save moxley/9620715 to your computer and use it in GitHub Desktop.
Save moxley/9620715 to your computer and use it in GitHub Desktop.
Markdown lists with embedded, language-specific code blocks

List items:

  1. List item 1

    def load_value(value)
      loader = Loader.new
      loader.load(value)
    end
  2. List item 2

    def load_value(value)
      loader.load(value)
    end
    
    def loader
      @loader ||= Loader.new
    end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment