Sha256: d074189540548a45aaa5be24d19f1b81bf60011a882a6b531cfe5f8b4d270aed

Contents?: true

Size: 634 Bytes

Versions: 4

Compression:

Stored size: 634 Bytes

Contents

Test Literate Maruku Document
=============================

This contains some code examples, that are used for testing.

Normal markdown code environments are simply rendered

    $this_code_block_will_not_be_executed = true

Annotated code environments are rendered and executed - in the root context.

    $this_code_block_will_be_executed = true
{: execute}

Code definitions also work across code environments, of course.

    a_test_method = lambda do |string|
      string
    end
{: execute}

And you may automatically attach the output of your code blocks.

    a_test_method.call("a test string")
{: execute attach_output}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
literate_maruku-0.1.3 test/test_document.mkd
literate_maruku-0.1.2 test/test_document.mkd
literate_maruku-0.1.0 test/test_document.mkd
literate_maruku-0.1.1 test/test_document.mkd