Home | History | Annotate | Download | only in YAMLParser
      1 # RUN: yaml-bench -canonical %s | FileCheck %s
      2 # CHECK: !!str "literal\n"
      3 # CHECK: !!str " folded\n"
      4 # CHECK: !!str "keep\n\n"
      5 # CHECK: !!str " strip"
      6 
      7 - | # Just the style
      8  literal
      9 - >1 # Indentation indicator
     10   folded
     11 - |+ # Chomping indicator
     12  keep
     13 
     14 - >-1 # Both indicators
     15   strip
     16