Sha256: 872665cc32c49ec1a5faaa8aa455c03c892769755e539625d8c140b0beccf64a

Contents?: true

Size: 1005 Bytes

Versions: 8

Compression:

Stored size: 1005 Bytes

Contents

# with more blocks
- in: |
    ---
    key: value
    ---
    block1
    ---   block2   ,    textile  
      block2  
    ---block3
    --- block4, textile
    yes
  meta_info: {key: value}
  blocks:
    - name: content
      content: "block1"
    - name: block2
      content: "block2"
    - name: block3
      content: ''
    - name: block4
      content: 'yes'

# empty file
- in: ""
  meta_info: {}
  blocks:
    - name: content
      content: ''

# without meta info
- in: "hallo"
  meta_info: {}
  blocks:
    - name: content
      content: "hallo"

# with empty block
- in: |
    --- 
    key: value

    ---

  meta_info: {key: value}
  blocks:
    - name: content
      content: ''

# block with escaped ---
- in: |
    before
    \--- in
    after
  meta_info: {}
  blocks:
    - name: content
      content: "before\n--- in\nafter"

# no meta info, starting with block with name and format specified
- in: |
    --- block1, textile
  meta_info: {}
  blocks:
    - name: block1
      content: ''

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
webgen-0.4.2 test/fixtures/tc_content/correct.yaml
webgen-0.4.1 test/fixtures/tc_content/correct.yaml
webgen-0.4.0 test/fixtures/tc_content/correct.yaml
webgen-0.4.4 test/fixtures/tc_content/correct.yaml
webgen-0.4.5 test/fixtures/tc_content/correct.yaml
webgen-0.4.3 test/fixtures/tc_content/correct.yaml
webgen-0.4.6 test/fixtures/tc_content/correct.yaml
webgen-0.4.7 test/fixtures/tc_content/correct.yaml