"CDATA"의 두 판 사이의 차이

(새 문서: ==개요== ;CDATA, character data ;C데이터, 캐릭터 데이터 *마크업 언어(예: SGML, XML)에서 데이터임을 표시하기 위한 것 *실제 태그(마크업)이...)
 
6번째 줄: 6번째 줄:
*<code><![CDATA[</code>으로 시작하여 <code>]]></code>로 끝냄
*<code><![CDATA[</code>으로 시작하여 <code>]]></code>로 끝냄


==예시==
<source lang='xml'>
<source lang='xml'>
<foo><![CDATA[<sender>John Smith</sender>]]></foo>
<foo><![CDATA[<sender>John Smith</sender>]]></foo>
</source>
<source lang='xml'>
<foo>&lt;sender&gt;John Smith&lt;/sender&gt;</foo>
</source>
</source>



2015년 9월 17일 (목) 21:13 판

1 개요

CDATA, character data
C데이터, 캐릭터 데이터
  • 마크업 언어(예: SGML, XML)에서 데이터임을 표시하기 위한 것
  • 실제 태그(마크업)이 아니라 데이터임을 명시
  • <![CDATA[으로 시작하여 ]]>로 끝냄

2 예시

<foo><![CDATA[<sender>John Smith</sender>]]></foo>
<foo>&lt;sender&gt;John Smith&lt;/sender&gt;</foo>

3 같이 보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}