11 lines
334 B
Factor
11 lines
334 B
Factor
! Copyright (C) 2014 Jon Harper.
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
USING: help.markup help.syntax kernel strings ;
|
|
IN: yaml.conversion
|
|
|
|
HELP: yaml-merge
|
|
{ $var-description "Represents a !!merge key in a yaml document." } ;
|
|
|
|
HELP: yaml-value
|
|
{ $var-description "Represents a !!value key in a yaml document." } ;
|