JS-YAML demo

---
# Collection Types #############################################################
################################################################################

# http://yaml.org/type/map.html -----------------------------------------------#

map:
  # Unordered set of key: value pairs.
  Block style: !!map
    Clark : Evans
    Ingy  : döt Net
    Oren  : Ben-Kiki
  Flow style: !!map { Clark: Evans, Ingy: döt Net, Oren: Ben-Kiki }

# http://yaml.org/type/omap.html ----------------------------------------------#

omap:
  # Explicitly typed ordered map (dictionary).
  Bestiary: !!omap
    - aardvark: African pig-like ant eater. Ugly.
    - anteater: South-American ant eater. Two species.
    - anaconda: South-American constrictor snake. Scaly.
    # Etc.
  # Flow style
  Numbers: !!omap [ one: 1, two: 2, three : 3 ]

# http://yaml.org/type/pairs.html ---------------------------------------------#

pairs:
  # Explicitly typed pairs.
  Block tasks: !!pairs
    - meeting: with team.
    - meeting: with boss.
    - break: lunch.
    - meeting: with client.
  Flow tasks: !!pairs [ meeting: with team, meeting: with boss ]

# http://yaml.org/type/set.html -----------------------------------------------#

set:
  # Explicitly typed set.
  baseball players: !!set
    ? Mark McGwire
    ? Sammy Sosa
    ? Ken Griffey
  # Flow style
  baseball teams: !!set { Boston Red Sox, Detroit Tigers, New York Yankees }

# http://yaml.org/type/seq.html -----------------------------------------------#

seq:
  # Ordered sequence of nodes
  Block style: !!seq
  - Mercury   # Rotates - no light/dark sides.
  - Venus     # Deadliest. Aptly named.
  - Earth     # Mostly dirt.
  - Mars      # Seems empty.
  - Jupiter   # The king.
  - Saturn    # Pretty.
  - Uranus    # Where the sun hardly shines.
  - Neptune   # Boring. No rings.
  - Pluto     # You call this a planet?
  Flow style: !!seq [ Mercury, Venus, Earth, Mars,      # Rocks
                      Jupiter, Saturn, Uranus, Neptune, # Gas
                      Pluto ]                           # Overrated


# Scalar Types #################################################################
################################################################################

# http://yaml.org/type/bool.html ----------------------------------------------#

bool:
  - true
  - True
  - TRUE
  - false
  - False
  - FALSE

# http://yaml.org/type/float.html ---------------------------------------------#

float:
  canonical: 6.8523015e+5
  exponentioal: 685.230_15e+03
  fixed: 685_230.15
  sexagesimal: 190:20:30.15
  negative infinity: -.inf
  not a number: .NaN

# http://yaml.org/type/int.html -----------------------------------------------#

int:
  canonical: 685230
  decimal: +685_230
  octal: 02472256
  hexadecimal: 0x_0A_74_AE
  binary: 0b1010_0111_0100_1010_1110
  sexagesimal: 190:20:30

# http://yaml.org/type/merge.html ---------------------------------------------#

merge:
  - &CENTER { x: 1, y: 2 }
  - &LEFT { x: 0, y: 2 }
  - &BIG { r: 10 }
  - &SMALL { r: 1 }
  
  # All the following maps are equal:
  
  - # Explicit keys
    x: 1
    y: 2
    r: 10
    label: nothing
  
  - # Merge one map
    << : *CENTER
    r: 10
    label: center
  
  - # Merge multiple maps
    << : [ *CENTER, *BIG ]
    label: center/big
  
  - # Override
    << : [ *BIG, *LEFT, *SMALL ]
    x: 1
    label: big/left/small

# http://yaml.org/type/null.html ----------------------------------------------#

null:
  # This mapping has four keys,
  # one has a value.
  empty:
  canonical: ~
  english: null
  ~: null key
  # This sequence has five
  # entries, two have values.
  sparse:
    - ~
    - 2nd entry
    -
    - 4th entry
    - Null

# http://yaml.org/type/str.html -----------------------------------------------#

string: abcd

# http://yaml.org/type/timestamp.html -----------------------------------------#

timestamp:
  canonical:        2001-12-15T02:59:43.1Z
  valid iso8601:    2001-12-14t21:59:43.10-05:00
  space separated:  2001-12-14 21:59:43.10 -5
  no time zone (Z): 2001-12-15 2:59:43.10
  date (00:00:00Z): 2002-12-14


# JavaScript Specific Types ####################################################
################################################################################

# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/RegExp

regexp:
  simple: !!js/regexp      foobar
  modifiers: !!js/regexp   /foobar/mi

# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/undefined

undefined: !!js/undefined ~

# https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Function

function: !!js/function >
  function foobar() {
    return 'Wow! JS-YAML Rocks!';
  }


# Custom types #################################################################
################################################################################


# JS-YAML allows you to specify a custom YAML types for your structures.
# This is a simple example of custom constructor defined in `js/demo.js` for
# custom `!sexy` type:
#
# var SexyYamlType = new jsyaml.Type('!sexy', {
#   kind: 'sequence',
#   construct: function (data) {
#     return data.map(function (string) { return 'sexy ' + string; });
#   }
# });
#
# var SEXY_SCHEMA = jsyaml.Schema.create([ SexyYamlType ]);
#
# result = jsyaml.load(yourData, { schema: SEXY_SCHEMA });

foobar: !sexy
  - bunny
  - chocolate
{ map: 
   { 'Block style': { Clark: 'Evans', Ingy: 'döt Net', Oren: 'Ben-Kiki' },
     'Flow style': { Clark: 'Evans', Ingy: 'döt Net', Oren: 'Ben-Kiki' } },
  omap: 
   { Bestiary: 
      [ { aardvark: 'African pig-like ant eater. Ugly.' },
        { anteater: 'South-American ant eater. Two species.' },
        { anaconda: 'South-American constrictor snake. Scaly.' } ],
     Numbers: [ { one: 1 }, { two: 2 }, { three: 3 } ] },
  pairs: 
   { 'Block tasks': 
      [ [ 'meeting', 'with team.' ],
        [ 'meeting', 'with boss.' ],
        [ 'break', 'lunch.' ],
        [ 'meeting', 'with client.' ] ],
     'Flow tasks': [ [ 'meeting', 'with team' ], [ 'meeting', 'with boss' ] ] },
  set: 
   { 'baseball players': { 'Mark McGwire': null, 'Sammy Sosa': null, 'Ken Griffey': null },
     'baseball teams': 
      { 'Boston Red Sox': null,
        'Detroit Tigers': null,
        'New York Yankees': null } },
  seq: 
   { 'Block style': 
      [ 'Mercury',
        'Venus',
        'Earth',
        'Mars',
        'Jupiter',
        'Saturn',
        'Uranus',
        'Neptune',
        'Pluto' ],
     'Flow style': 
      [ 'Mercury',
        'Venus',
        'Earth',
        'Mars',
        'Jupiter',
        'Saturn',
        'Uranus',
        'Neptune',
        'Pluto' ] },
  bool: [ true, true, true, false, false, false ],
  float: 
   { canonical: 685230.15,
     exponentioal: 685230.15,
     fixed: 685230.15,
     sexagesimal: 685230.15,
     'negative infinity': -Infinity,
     'not a number': NaN },
  int: 
   { canonical: 685230,
     decimal: 685230,
     octal: 685230,
     hexadecimal: 685230,
     binary: 685230,
     sexagesimal: 685230 },
  merge: 
   [ { x: 1, y: 2 },
     { x: 0, y: 2 },
     { r: 10 },
     { r: 1 },
     { x: 1, y: 2, r: 10, label: 'nothing' },
     { x: 1, y: 2, r: 10, label: 'center' },
     { x: 1, y: 2, r: 10, label: 'center/big' },
     { r: 10, x: 1, y: 2, label: 'big/left/small' } ],
  null: 
   { empty: null,
     canonical: null,
     english: null,
     null: 'null key',
     sparse: [ null, '2nd entry', null, '4th entry', null ] },
  string: 'abcd',
  timestamp: 
   { canonical: Sat Dec 15 2001 10:59:43 GMT+0800 (中国标准时间),
     'valid iso8601': Sat Dec 15 2001 10:59:43 GMT+0800 (中国标准时间),
     'space separated': Sat Dec 15 2001 10:59:43 GMT+0800 (中国标准时间),
     'no time zone (Z)': Sat Dec 15 2001 10:59:43 GMT+0800 (中国标准时间),
     'date (00:00:00Z)': Sat Dec 14 2002 08:00:00 GMT+0800 (中国标准时间) },
  regexp: { simple: /foobar/, modifiers: /foobar/im },
  undefined: undefined,
  function: [Function: anonymous],
  foobar: [ 'sexy bunny', 'sexy chocolate' ] }

转载自:JS-YAML demohttp://nodeca.github.io/js-yaml/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值