mirror of
				https://github.com/node-red/node-red.git
				synced 2025-03-01 10:36:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
  Copyright JS Foundation and other contributors, http://js.foundation
 | 
						|
 | 
						|
  Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
  you may not use this file except in compliance with the License.
 | 
						|
  You may obtain a copy of the License at
 | 
						|
 | 
						|
  http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
  Unless required by applicable law or agreed to in writing, software
 | 
						|
  distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
  See the License for the specific language governing permissions and
 | 
						|
  limitations under the License.
 | 
						|
-->
 | 
						|
 | 
						|
<script type="text/html" data-help-name="yaml">
 | 
						|
    <p>YAML形式の文字列とJavaScriptオブジェクトの間で相互変換を行います。</p>
 | 
						|
    <h3>入力</h3>
 | 
						|
    <dl class="message-properties">
 | 
						|
        <dt>payload<span class="property-type">オブジェクト | 文字列</span></dt>
 | 
						|
        <dd>JavaScriptオブジェクトもしくはYAML形式文字列</dd>
 | 
						|
    </dl>
 | 
						|
    <h3>出力</h3>
 | 
						|
    <dl class="message-properties">
 | 
						|
        <dt>payload<span class="property-type">オブジェクト | 文字列</span></dt>
 | 
						|
        <dd>
 | 
						|
            <ul>
 | 
						|
                <li>入力がYAML形式の文字列の場合、JavaScriptオブジェクトに変換します。</li>
 | 
						|
                <li>入力がJavaScriptオブジェクトの場合、YAML形式の文字列に変換します。</li>
 | 
						|
            </ul>
 | 
						|
        </dd>
 | 
						|
    </dl>
 | 
						|
</script>
 |